Skip to content

Commit 7c74842

Browse files
committedDec 25, 2021
more structures for DT command, for study exceptions
1 parent b373dad commit 7c74842

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed
 

‎src/emu32.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1557,6 +1557,10 @@ impl Emu32 {
15571557
let s = structures::CppEhRecord::load(addr, &self.maps);
15581558
s.print();
15591559
}
1560+
"exception_pointers" => {
1561+
let s = structures::ExceptionPointers::load(addr, &self.maps);
1562+
s.print();
1563+
}
15601564

15611565
_ => println!("unrecognized structure."),
15621566
}

0 commit comments

Comments
 (0)