diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-04-11 15:19:16 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-04-11 15:19:16 -0700 |
commit | d84292e2d687afa7e6f82a4bdac2f555abc3b8d8 (patch) | |
tree | abdc75adfae231825e6307af859393aada1720b0 | |
parent | 90e6596f40c90e0550c1609ffb87d5cedbfe11b8 (diff) | |
download | mu-d84292e2d687afa7e6f82a4bdac2f555abc3b8d8.tar.gz |
6202
-rw-r--r-- | 010---vm.cc | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/010---vm.cc b/010---vm.cc index 877f4655..f00c54b5 100644 --- a/010---vm.cc +++ b/010---vm.cc @@ -208,7 +208,6 @@ inline uint32_t* mem_addr_u32(uint32_t addr) { if (result == NULL) { if (Trace_file.is_open()) Trace_file.flush(); raise << "Tried to access uninitialized memory at address 0x" << HEXWORD << addr << '\n' << end(); - raise << "The entire 4-byte word should be initialized and lie in a single segment.\n" << end(); exit(1); } return result; |