2023-10-02 19:57:42 +00:00
|
|
|
; Emulator debug interface.
|
2024-04-08 19:30:05 +00:00
|
|
|
; Docs: https://github.com/X16Community/x16-emulator/tree/d52f118ce893fa24c4ca021a0b8de46cb80e5ccf#emulator-io-registers
|
2023-10-02 19:57:42 +00:00
|
|
|
|
|
|
|
emudbg {
|
2023-12-29 21:21:44 +00:00
|
|
|
%option ignore_unused
|
2023-10-02 19:57:42 +00:00
|
|
|
|
|
|
|
const uword EMU_BASE = $9fb0
|
|
|
|
|
|
|
|
&ubyte EMU_DBG_HOTKEY_ENABLED = EMU_BASE + 0
|
|
|
|
&ubyte EMU_LOG_VIDEO = EMU_BASE + 1
|
|
|
|
&ubyte EMU_LOG_KEYBOARD = EMU_BASE + 2
|
|
|
|
&ubyte EMU_ECHO_MODE = EMU_BASE + 3
|
|
|
|
&ubyte EMU_SAVE_ON_EXIT = EMU_BASE + 4
|
|
|
|
&ubyte EMU_RECORD_GIF = EMU_BASE + 5
|
|
|
|
&ubyte EMU_RECORD_WAV = EMU_BASE + 6
|
|
|
|
&ubyte EMU_CMDKEYS_DISABLED = EMU_BASE + 7
|
2023-12-29 21:21:44 +00:00
|
|
|
&ubyte EMU_CPUCLK_L = EMU_BASE + 8
|
|
|
|
&ubyte EMU_CPUCLK_M = EMU_BASE + 9
|
|
|
|
&ubyte EMU_CPUCLK_H = EMU_BASE + 10
|
|
|
|
&ubyte EMU_CPUCLK_U = EMU_BASE + 11
|
|
|
|
&ubyte EMU_CPUCLK_RESET = EMU_BASE + 8 ; write: reset cpu clock to 0
|
|
|
|
&ubyte EMU_DBGOUT1 = EMU_BASE + 9 ; write: outputs "User debug 1: $xx"
|
|
|
|
&ubyte EMU_DBGOUT2 = EMU_BASE + 10 ; write: outputs "User debug 2: $xx"
|
|
|
|
&ubyte EMU_CHROUT = EMU_BASE + 11 ; write: outputs as character to console
|
2023-10-02 19:57:42 +00:00
|
|
|
; 12 is unused for now
|
|
|
|
&ubyte EMU_KEYMAP = EMU_BASE + 13
|
|
|
|
&ubyte EMU_EMU_DETECT1 = EMU_BASE + 14
|
|
|
|
&ubyte EMU_EMU_DETECT2 = EMU_BASE + 15
|
|
|
|
|
|
|
|
sub is_emulator() -> bool {
|
2023-10-12 20:29:01 +00:00
|
|
|
; Test for emulator presence.
|
2023-11-17 14:07:21 +00:00
|
|
|
; It is recommended to only use the debug registers if this returns true.
|
2023-10-02 19:57:42 +00:00
|
|
|
return EMU_EMU_DETECT1=='1' and EMU_EMU_DETECT2=='6'
|
|
|
|
}
|
|
|
|
|
2023-11-17 14:07:21 +00:00
|
|
|
sub console_write(str isoString) {
|
2023-11-08 21:47:05 +00:00
|
|
|
; note: make sure the text is in Iso encoding.
|
2023-11-17 14:07:21 +00:00
|
|
|
if is_emulator() {
|
2023-11-19 23:20:48 +00:00
|
|
|
ubyte chr
|
|
|
|
repeat {
|
|
|
|
chr = @(isoString)
|
|
|
|
if_z
|
|
|
|
break
|
2024-04-14 22:52:09 +00:00
|
|
|
EMU_CHROUT = chr
|
2023-11-19 23:20:48 +00:00
|
|
|
isoString++
|
2023-11-17 14:07:21 +00:00
|
|
|
}
|
|
|
|
}
|
2023-10-02 19:57:42 +00:00
|
|
|
}
|
|
|
|
|
2023-11-17 14:07:21 +00:00
|
|
|
sub console_chrout(ubyte char) {
|
2023-11-08 21:47:05 +00:00
|
|
|
; note: make sure the character is in Iso encoding.
|
2023-11-17 14:07:21 +00:00
|
|
|
if is_emulator()
|
2023-12-29 21:21:44 +00:00
|
|
|
EMU_CHROUT = char
|
2023-10-02 19:57:42 +00:00
|
|
|
}
|
|
|
|
|
2023-11-17 14:07:21 +00:00
|
|
|
sub console_value1(ubyte value) {
|
|
|
|
if is_emulator()
|
2023-12-29 21:21:44 +00:00
|
|
|
EMU_DBGOUT1 = value
|
2023-10-02 19:57:42 +00:00
|
|
|
}
|
|
|
|
|
2023-11-17 14:07:21 +00:00
|
|
|
sub console_value2(ubyte value) {
|
|
|
|
if is_emulator()
|
2023-12-29 21:21:44 +00:00
|
|
|
EMU_DBGOUT2 = value
|
2023-10-02 19:57:42 +00:00
|
|
|
}
|
|
|
|
}
|