human build bot has completed!

This commit is contained in:
nattthebear 2017-08-24 21:10:32 -04:00
parent b868c07a10
commit d990226a26
2 changed files with 6 additions and 6 deletions

Binary file not shown.

View File

@ -18,6 +18,12 @@ struct SMP : public Processor, public SMPcore {
~SMP();
void initialize();
struct Debugger {
hook<void (uint16)> op_exec;
hook<void (uint16)> op_read;
hook<void (uint16, uint8)> op_write;
} debugger;
privileged:
#include "memory/memory.hpp"
#include "timing/timing.hpp"
@ -50,12 +56,6 @@ privileged:
static void Enter();
friend class SMPcore;
struct Debugger {
hook<void (uint16)> op_exec;
hook<void (uint16)> op_read;
hook<void (uint16, uint8)> op_write;
} debugger;
};
extern SMP smp;