;* "hello" program .seq "acehead.s" .org aceAppAddress .obj "@0:hello" jmp main .byte aceID1,aceID2,aceID3 .byte 64,0 ;** stack,reserved main = * lda #helloMsg sta zp+0 sty zp+1 lda #helloMsgEnd-helloMsg ldx #stdout jsr write rts helloMsg = * .asc "Hello, cruel world." .byte chrBEL,chrCR helloMsgEnd = *