1
0
mirror of https://github.com/fadden/6502bench.git synced 2024-07-06 16:29:03 +00:00
6502bench/SourceGen/SGTestData/Expected/20022-operand-formats_cc65.S

31 lines
722 B
ArmAsm
Raw Normal View History

;Project file was edited to force ASCII formatting for some operands.
2018-09-28 17:05:11 +00:00
.setcpu "65816"
; .segment "SEG000"
2018-09-28 17:05:11 +00:00
.org $1000
.a8
.i8
clc
xce
rep #$30
2018-09-28 17:05:11 +00:00
.a16
.i16
lda #$1234
lda #4660
lda #4660
lda #%0001001000110100
lda #$fffe
lda #65534
lda #65534
lda #%1111111111111110
lda $fffefd
lda 16776957
lda 16776957
lda %111111111111111011111101
2018-09-28 17:05:11 +00:00
lda #'h'
lda #'H' | $80
2018-09-28 17:05:11 +00:00
lda #$6868
lda f:'h'
lda f:'H' | $80
2018-09-28 17:05:11 +00:00
rts