From f422bd9ca914f35cbecd28948f959bd14b3ff054 Mon Sep 17 00:00:00 2001 From: akuker Date: Sun, 19 Jul 2020 15:05:24 -0500 Subject: [PATCH] Un-do extraneous changes before merging back into source branch --- src/raspberrypi/disk.cpp | 4 ++-- src/raspberrypi/rascsi.cpp | 4 ++++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/raspberrypi/disk.cpp b/src/raspberrypi/disk.cpp index 06ac18b..bc845f9 100644 --- a/src/raspberrypi/disk.cpp +++ b/src/raspberrypi/disk.cpp @@ -8151,8 +8151,8 @@ void FASTCALL SCSIDEV::Selection() // Raise BSY and respond ctrl.bus->SetBSY(TRUE); - return; - } + return; + } // Selection completed if (!ctrl.bus->GetSEL() && ctrl.bus->GetBSY()) { diff --git a/src/raspberrypi/rascsi.cpp b/src/raspberrypi/rascsi.cpp index cf2f68f..58324c9 100644 --- a/src/raspberrypi/rascsi.cpp +++ b/src/raspberrypi/rascsi.cpp @@ -15,6 +15,7 @@ #include "fileio.h" #include "disk.h" #include "gpiobus.h" +#include "spdlog/spdlog.h" //--------------------------------------------------------------------------- // @@ -995,6 +996,9 @@ int main(int argc, char* argv[]) struct sched_param schparam; #endif // BAREMETAL + spdlog::set_level(spdlog::level::trace); + spdlog::trace("Entering the function with %d arguments", argc); + // Output the Banner Banner(argc, argv);