A2osX/.Docs/.TEMPLATE.S.txt

95 lines
2.7 KiB
Plaintext
Raw Permalink Normal View History

2018-11-26 19:54:46 +00:00
NEW
2019-04-09 15:47:33 +00:00
AUTO 3,1 Enable MASM3 auto line num
.LIST OFF
.OP 65C02 Target CPU, must = CPU header level
.OR $2000 usualy $2000, any value > $100 ok
.TF <PATH TO BINARY> e.g. BIN/MYPROG
*---------------------------------------
.INB INC/MACROS.I
.INB INC/A2OSX.I
*---------------------------------------
* Zero Page Segment, up to 32 bytes (0 filled before INIT)
*---------------------------------------
.DUMMY
.OR ZPBIN
2018-12-04 13:20:35 +00:00
ZS.START
2018-11-26 19:54:46 +00:00
* MyPtr .BS 2
2019-01-18 16:06:44 +00:00
ZS.END .ED
2019-04-09 15:47:33 +00:00
*---------------------------------------
2019-04-10 15:51:47 +00:00
* File Header (16 Bytes)
2019-04-09 15:47:33 +00:00
*---------------------------------------
2018-11-26 19:54:46 +00:00
CS.START cld
2019-04-09 15:47:33 +00:00
jmp (.1,x)
.DA #$61 6502,Level 1 (65c02)
.DA #1 BIN Layout Version 1
.DA #0 S.PS.F.EVENT
.DA #0
.DA CS.END-CS.START Code Size (without Constants)
.DA DS.END-DS.START Data SegmentSize
2019-06-13 15:30:28 +00:00
.DA #64 Stack Size
2019-04-09 15:47:33 +00:00
.DA #ZS.END-ZS.START Zero Page Size
.DA 0
*---------------------------------------
2018-11-26 19:54:46 +00:00
* Relocation Table
2019-10-03 06:25:27 +00:00
*---------------------------------------
2019-04-09 15:47:33 +00:00
.1 .DA CS.INIT
.DA CS.RUN
.DA CS.DOEVENT
.DA CS.QUIT
2018-11-26 19:54:46 +00:00
* Add any address you want be relocated by loader
* Usefull if you have to pass EFFECTIVE address to an API call...
* L.MSG.Test .DA Msg.Test
2019-04-09 15:47:33 +00:00
.DA 0
*---------------------------------------
2018-11-26 19:54:46 +00:00
* Called once at process creation
* Put code for loading LIB here
2019-04-09 15:47:33 +00:00
*---------------------------------------
2018-11-26 19:54:46 +00:00
CS.INIT clc
2019-04-09 15:47:33 +00:00
rts
*---------------------------------------
2018-11-26 19:54:46 +00:00
* Called until exit with CS
2019-06-13 15:30:28 +00:00
* if RUN exits with CC, RUN entered again
2019-04-09 15:47:33 +00:00
*---------------------------------------
2018-11-26 19:54:46 +00:00
CS.RUN
* Put your code here
2019-04-09 15:47:33 +00:00
* >LDYA L.MSG.Test Load EFFECTIVE address
2020-02-28 07:21:46 +00:00
* >SYSCALL PutS Call API to print a string
2019-04-09 15:47:33 +00:00
.8 lda #0 Exit Code = Succes
sec QUIT Process
rts
.9 lda #E.SYN Exit Code = Succes
sec QUIT Process
rts
*---------------------------------------
2018-11-26 19:54:46 +00:00
* Called if option S.PS.F.EVENT enabled in Header
* Timer Event : every 10th seconds
2019-04-09 15:47:33 +00:00
*---------------------------------------
2018-11-26 19:54:46 +00:00
CS.DOEVENT sec
2019-04-09 15:47:33 +00:00
rts
*---------------------------------------
2018-11-26 19:54:46 +00:00
* Called once, when RUN exited with CS
* Put code for unloading LIB here
2019-04-09 15:47:33 +00:00
*---------------------------------------
2018-11-26 19:54:46 +00:00
CS.QUIT clc
2019-04-09 15:47:33 +00:00
rts
*---------------------------------------
2018-11-26 19:54:46 +00:00
CS.END
2019-04-09 15:47:33 +00:00
*---------------------------------------
2018-11-26 19:54:46 +00:00
* Initialized DATA
2019-04-09 15:47:33 +00:00
*---------------------------------------
2018-11-26 19:54:46 +00:00
* Put your constant here :
* MSG.TEST .AZ "Test Message"
2019-04-09 15:47:33 +00:00
*---------------------------------------
2019-04-10 15:51:47 +00:00
* Per Process DATA segment (0 filled before INIT)
2019-04-09 15:47:33 +00:00
*---------------------------------------
.DUMMY
.OR 0
2018-11-26 19:54:46 +00:00
DS.START
DS.END
2019-04-09 15:47:33 +00:00
.ED
*---------------------------------------
2018-11-26 19:54:46 +00:00
MAN
2019-04-09 15:47:33 +00:00
SAVE USR/SRC/BIN<MYPROG.S> Save this source file
2018-11-26 19:54:46 +00:00
ASM