mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-02 17:19:27 +01:00
Save some space on ATTiny28 since it doesn't have any ram.
git-svn-id: trunk@32445 -
This commit is contained in:
parent
62dadad93e
commit
49f8d574db
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
10
rtl/embedded/avr/start_noram.inc
Normal file
10
rtl/embedded/avr/start_noram.inc
Normal file
@ -0,0 +1,10 @@
|
||||
_start:
|
||||
clr r1
|
||||
|
||||
{$ifdef RELBRANCHES}
|
||||
rjmp PASCALMAIN
|
||||
{$else RELBRANCHES}
|
||||
jmp PASCALMAIN
|
||||
{$endif RELBRANCHES}
|
||||
.text
|
||||
|
||||
Loading…
Reference in New Issue
Block a user