1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-01 08:29:37 +00:00
cc65/libsrc/telestrat/orixhdr.s

36 lines
1005 B
ArmAsm
Raw Normal View History

2016-12-14 20:22:10 +00:00
;
; By Debrune Jérôme <jede@oric.org>
2016-12-14 20:22:10 +00:00
;
; The following symbol is used by the linker config. file
; to force this module to be included into the output file.
.export __ORIXHDR__:abs = 1
; These symbols, also, come from the configuration file.
.import __AUTORUN__, __PROGFLAG__
.import __BASHEAD_START__, __MAIN_LAST__
; ------------------------------------------------------------------------
; Orix header see http://orix.oric.org/doku.php?id=orix:header for specs
2016-12-14 20:22:10 +00:00
.segment "ORIXHDR"
.byte $01, $00 ;
2016-12-14 20:22:10 +00:00
.byte "ori"
2016-12-14 20:22:10 +00:00
.byte $01 ; version
.byte $00,%00000000 ; 6502 only
.byte $00,$00 ; Extends
.byte $00,$00 ; OS
2016-12-14 20:22:10 +00:00
.byte $00 ; reserved
.byte $00 ; auto
2016-12-14 20:22:10 +00:00
.word __BASHEAD_START__ ; Address of start of file
.word __MAIN_LAST__ - 1 ; Address of end of file
.word __BASHEAD_START__ ; Address of start of file
2016-12-14 20:22:10 +00:00