diff options
author | Oxore <oxore@protonmail.com> | 2022-10-01 19:34:58 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2022-10-01 23:09:44 +0300 |
commit | 72abe5f3e714df9cc8310a78bdfa648feb79c4d2 (patch) | |
tree | 0333ee5e61f02548c7ce9dc7038698d15369acc9 /m68k_debugging.cpp | |
parent | f125cc7018ed32b7f919ff71ea3c7d9d2e6565de (diff) |
Add more VDP tracing, add VRAM, CRAM, VSRAM and status
Diffstat (limited to 'm68k_debugging.cpp')
-rw-r--r-- | m68k_debugging.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/m68k_debugging.cpp b/m68k_debugging.cpp index 7b7c84c..2e64417 100644 --- a/m68k_debugging.cpp +++ b/m68k_debugging.cpp @@ -6,8 +6,12 @@ #include "bus.hpp" #include "utils.hpp" -#include <cstdlib> +#include <algorithm> #include <cassert> +#include <cstdlib> +#include <vector> + +extern std::vector<Breakpoint> code_bkpts, read_bkpts, write_bkpts, access_bkpts; static inline m68k_register_t ConvertRegisterId(const M68KRegister register_id) { |