mirror of
https://github.com/cc65/cc65.git
synced 2024-11-03 10:07:02 +00:00
0390c34e88
The left side doesn't look unbalanced.
13 lines
321 B
ArmAsm
13 lines
321 B
ArmAsm
; This file defines the EXE file "trailer" which sets the entry point
|
|
|
|
.export __AUTOSTART__: absolute = 1
|
|
.import start
|
|
|
|
.include "atari.inc"
|
|
|
|
.segment "AUTOSTRT"
|
|
.word RUNAD ; defined in atari.inc
|
|
.word RUNAD+1
|
|
.word start
|
|
|