--- hatari/src/debug/debugInfo.c 2019/04/09 08:50:21 1.1.1.3 +++ hatari/src/debug/debugInfo.c 2019/04/09 08:51:59 1.1.1.4 @@ -12,6 +12,7 @@ const char DebugInfo_fileid[] = "Hatari #include #include #include "main.h" +#include "bios.h" #include "configuration.h" #include "debugInfo.h" #include "debugcpu.h" @@ -29,6 +30,7 @@ const char DebugInfo_fileid[] = "Hatari #include "screen.h" #include "vdi.h" #include "video.h" +#include "xbios.h" /* ------------------------------------------------------------------ @@ -809,6 +811,7 @@ static const struct { } infotable[] = { { false,"aes", AES_Info, NULL, "Show AES vector contents (with , show opcodes)" }, { false,"basepage", DebugInfo_Basepage, NULL, "Show program basepage info at given
" }, + { false,"bios", Bios_Info, NULL, "Show BIOS opcodes" }, { false,"cookiejar", DebugInfo_Cookiejar, NULL, "Show TOS Cookiejar contents" }, { false,"crossbar", DebugInfo_Crossbar, NULL, "Show Falcon crossbar HW register values" }, { true, "default", DebugInfo_Default, NULL, "Show default debugger entry information" }, @@ -827,10 +830,11 @@ static const struct { { true, "registers", DebugInfo_CpuRegister,NULL, "Show CPU registers values" }, { false,"vdi", VDI_Info, NULL, "Show VDI vector contents (with , show opcodes)" }, { false,"videl", DebugInfo_Videl, NULL, "Show Falcon Videl HW registers values" }, - { false,"video", DebugInfo_Video, NULL, "Show Video related values" } + { false,"video", DebugInfo_Video, NULL, "Show Video related values" }, + { false,"xbios", XBios_Info, NULL, "Show XBIOS opcodes" } }; -static int LockedFunction = 4; /* index for the "default" function */ +static int LockedFunction = 5; /* index for the "default" function */ static Uint32 LockedArgument; /**