mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-17 13:59:29 +02:00
* cleanup
git-svn-id: trunk@30931 -
This commit is contained in:
parent
0f73675354
commit
e9d886cdfc
@ -5,7 +5,6 @@ Register definitions and startup code for ATMEL ATmega128
|
||||
unit atmega128;
|
||||
|
||||
{$goto on}
|
||||
{$macro on}
|
||||
|
||||
interface
|
||||
const
|
||||
@ -506,9 +505,6 @@ unit atmega128;
|
||||
MUX1 = 1;
|
||||
MUX0 = 0;
|
||||
|
||||
{$define DOCALL:=call}
|
||||
{$define DOJMP:=jmp}
|
||||
|
||||
implementation
|
||||
|
||||
{$i avrcommon.inc}
|
||||
@ -555,7 +551,7 @@ unit atmega128;
|
||||
asm
|
||||
.init
|
||||
.globl _start
|
||||
// .org 0x00
|
||||
|
||||
jmp _start
|
||||
jmp Int00Handler
|
||||
jmp Int01Handler
|
||||
|
@ -5,7 +5,6 @@ Register definitions and startup code for ATMEL ATmega128
|
||||
unit atmega8;
|
||||
|
||||
{$goto on}
|
||||
{$macro on}
|
||||
|
||||
interface
|
||||
const
|
||||
@ -253,9 +252,6 @@ unit atmega8;
|
||||
MUX1 = 1;
|
||||
MUX0 = 0;
|
||||
|
||||
{$define DOCALL:=call}
|
||||
{$define DOJMP:=jmp}
|
||||
|
||||
implementation
|
||||
|
||||
{$i avrcommon.inc}
|
||||
@ -286,7 +282,7 @@ unit atmega8;
|
||||
asm
|
||||
.init
|
||||
.globl _start
|
||||
// .org 0x00
|
||||
|
||||
jmp _start
|
||||
jmp Int00Handler
|
||||
jmp Int01Handler
|
||||
|
@ -4,13 +4,13 @@
|
||||
asm
|
||||
cli
|
||||
.Lhalt:
|
||||
jmp .Lhalt
|
||||
rjmp .Lhalt
|
||||
end;
|
||||
|
||||
procedure Default_IRQ_handler; assembler; nostackframe; public name '_Default_IRQ_handler';noreturn;
|
||||
asm
|
||||
.Lloop:
|
||||
jmp .Lloop
|
||||
rjmp .Lloop
|
||||
end;
|
||||
|
||||
var
|
||||
|
Loading…
Reference in New Issue
Block a user