2017-11-03 17:48:49 +00:00
|
|
|
;ACME 0.96.3
|
2012-02-27 21:14:46 +00:00
|
|
|
|
2014-06-02 00:47:46 +00:00
|
|
|
!ifdef lib_65816_std_a !eof
|
2017-11-03 17:48:49 +00:00
|
|
|
lib_65816_std_a = 2
|
2012-02-27 21:14:46 +00:00
|
|
|
|
|
|
|
; Labels and macros for Western Digital's 65c816 processor
|
|
|
|
|
2014-06-02 00:47:46 +00:00
|
|
|
!address {
|
|
|
|
cpu_e_cop = $fff4
|
|
|
|
cpu_e_abort = $fff8
|
|
|
|
cpu_e_nmi = $fffa
|
|
|
|
cpu_e_reset = $fffc
|
|
|
|
cpu_e_irq = $fffe
|
|
|
|
|
2017-11-03 17:48:49 +00:00
|
|
|
cpu_n_cop = $ffe4
|
|
|
|
cpu_n_brk = $ffe6
|
|
|
|
cpu_n_abort = $ffe8
|
|
|
|
cpu_n_nmi = $ffea
|
|
|
|
; no reset vector for native mode because reset always enters emulation mode
|
|
|
|
cpu_n_irq = $ffee
|
2014-06-02 00:47:46 +00:00
|
|
|
}
|
2012-02-27 21:14:46 +00:00
|
|
|
|
|
|
|
!macro cpu_emu {; switch to emulation mode
|
|
|
|
sec
|
|
|
|
xce
|
|
|
|
}
|
|
|
|
|
|
|
|
!macro cpu_native {; switch to native mode
|
|
|
|
clc
|
|
|
|
xce
|
|
|
|
}
|
|
|
|
|
|
|
|
!macro a8 {; switch A to 8 bit
|
|
|
|
sep #%..#.....
|
|
|
|
!as
|
|
|
|
}
|
|
|
|
|
|
|
|
!macro a16 {; switch A to 16 bit
|
|
|
|
rep #%..#.....
|
|
|
|
!al
|
|
|
|
}
|
|
|
|
|
|
|
|
!macro i8 {; switch X/Y to 8 bit
|
|
|
|
sep #%...#....
|
|
|
|
!rs
|
|
|
|
}
|
|
|
|
|
|
|
|
!macro i16 {; switch X/Y to 16 bit
|
|
|
|
rep #%...#....
|
|
|
|
!rl
|
|
|
|
}
|
|
|
|
|
|
|
|
!macro ai8 {; switch A/X/Y to 8 bit
|
|
|
|
sep #%..##....
|
|
|
|
!as
|
|
|
|
!rs
|
|
|
|
}
|
|
|
|
|
|
|
|
!macro ai16 {; switch A/X/Y to 16 bit
|
|
|
|
rep #%..##....
|
|
|
|
!al
|
|
|
|
!rl
|
|
|
|
}
|
|
|
|
|
|
|
|
!macro a8i16 {; switch A to 8, X/Y to 16 bit
|
|
|
|
+a8
|
|
|
|
+i16
|
|
|
|
}
|
|
|
|
|
|
|
|
!macro a16i8 {; switch A to 16, X/Y to 8 bit
|
|
|
|
+a16
|
|
|
|
+i8
|
|
|
|
}
|
|
|
|
|
|
|
|
!macro inc24 .t {; increase 24-bit counter
|
|
|
|
inc .t
|
2014-06-02 00:47:46 +00:00
|
|
|
bne +
|
2012-02-27 21:14:46 +00:00
|
|
|
inc .t + 1
|
2014-06-02 00:47:46 +00:00
|
|
|
bne +
|
2012-02-27 21:14:46 +00:00
|
|
|
inc .t + 2
|
2014-06-02 00:47:46 +00:00
|
|
|
+
|
2012-02-27 21:14:46 +00:00
|
|
|
}
|