From: Doug Goldstein Date: Sun, 27 Apr 2014 15:46:17 +0000 (-0500) Subject: Clean up outdated comment X-Git-Tag: v1.2~2^2~2 X-Git-Url: https://git.htl-mechatronik.at/public/?a=commitdiff_plain;h=c91302cb3518276f242f9f1b70b1e7bdf5941613;p=sx%2Fsimavr.git Clean up outdated comment This comment is no longer true for any of the listed platforms so its best to adjust the wording to what might be relevant to users --- diff --git a/simavr/cores/sim_core_declare.h b/simavr/cores/sim_core_declare.h index 9c07612..fa0b8c2 100644 --- a/simavr/cores/sim_core_declare.h +++ b/simavr/cores/sim_core_declare.h @@ -48,7 +48,7 @@ .fuse = { LFUSE_DEFAULT, HFUSE_DEFAULT, EFUSE_DEFAULT }, \ .signature = { SIGNATURE_0,SIGNATURE_1,SIGNATURE_2 } #else -// Disable signature for now, for ubuntu, gentoo and other using old avr toolchain +// Disable signature when using an old avr toolchain #define DEFAULT_CORE(_vector_size) \ .ramend = RAMEND, \ .flashend = FLASHEND, \ diff --git a/simavr/cores/sim_tiny13.c b/simavr/cores/sim_tiny13.c index 0df8739..23793bc 100644 --- a/simavr/cores/sim_tiny13.c +++ b/simavr/cores/sim_tiny13.c @@ -54,7 +54,7 @@ static const struct mcu_t { .flashend = FLASHEND, .e2end = E2END, .vector_size = 2, -// Disable signature for now, for ubuntu, gentoo and other using old avr toolchain +// Disable signature when using an old avr toolchain #ifdef SIGNATURE_0 .signature = { SIGNATURE_0,SIGNATURE_1,SIGNATURE_2 }, .fuse = { LFUSE_DEFAULT, HFUSE_DEFAULT },