From d12c834f9cec2cf4fb87120813a4c4ea577680bb Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Tue, 15 Aug 2017 20:35:33 -0400 Subject: [PATCH] Increased amount reported. --- Components/8272/i8272.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Components/8272/i8272.cpp b/Components/8272/i8272.cpp index 63384b708..26e1367f0 100644 --- a/Components/8272/i8272.cpp +++ b/Components/8272/i8272.cpp @@ -812,7 +812,7 @@ void i8272::posit_event(int event_type) { // Posts whatever is in result_stack_ as a result phase. Be aware that it is a stack — the // last thing in it will be returned first. post_result: - printf("Result to %02x: ", command_[0] & 0x1f); + printf("Result to %02x, main %02x: ", command_[0] & 0x1f, main_status_); for(size_t c = 0; c < result_stack_.size(); c++) { printf("%02x ", result_stack_[result_stack_.size() - 1 - c]); }