summaryrefslogtreecommitdiff
path: root/isa/checker.h
diff options
context:
space:
mode:
Diffstat (limited to 'isa/checker.h')
-rw-r--r--isa/checker.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/isa/checker.h b/isa/checker.h
index 332c483..571bbc8 100644
--- a/isa/checker.h
+++ b/isa/checker.h
@@ -1,6 +1,7 @@
1#pragma once 1#pragma once
2 2
3#include <array> 3#include <array>
4#include <cstdint>
4#include <map> 5#include <map>
5 6
6#include "io/model.h" 7#include "io/model.h"
@@ -41,7 +42,7 @@ struct checker {
41 unsigned int link = 0; 42 unsigned int link = 0;
42 unsigned int mq = 0; 43 unsigned int mq = 0;
43 unsigned int pc = 00200; 44 unsigned int pc = 00200;
44 std::array<unsigned int, NUM_CTLREGS> ctlregs; 45 std::array<std::uint_fast32_t, NUM_CTLREGS> ctlregs;
45 iomodel &system; 46 iomodel &system;
46 instruction_context inst; 47 instruction_context inst;
47 funcmem mem; 48 funcmem mem;