Save some space on ATTiny28 since it doesn't have any ram.

git-svn-id: trunk@32445 -
This commit is contained in:
Jeppe Johansen 2015-11-21 19:33:42 +00:00
parent 62dadad93e
commit 49f8d574db
3 changed files with 12 additions and 1 deletions

1
.gitattributes vendored
View File

@ -8524,6 +8524,7 @@ rtl/embedded/avr/attiny9.pp svneol=native#text/plain
rtl/embedded/avr/avrcommon.inc svneol=native#text/plain
rtl/embedded/avr/avrsim.pp svneol=native#text/plain
rtl/embedded/avr/start.inc svneol=native#text/plain
rtl/embedded/avr/start_noram.inc svneol=native#text/pascal
rtl/embedded/buildrtl.lpi svneol=native#text/plain
rtl/embedded/buildrtl.pp svneol=native#text/plain
rtl/embedded/check.inc svneol=native#text/plain

View File

@ -107,7 +107,7 @@ label
rjmp TIMER0_OVF_ISR
rjmp ANA_COMP_ISR
{$i start.inc}
{$i start_noram.inc}
.weak INT0_ISR
.weak INT1_ISR

View File

@ -0,0 +1,10 @@
_start:
clr r1
{$ifdef RELBRANCHES}
rjmp PASCALMAIN
{$else RELBRANCHES}
jmp PASCALMAIN
{$endif RELBRANCHES}
.text