Un-do extraneous changes before merging back into source branch

This commit is contained in:
akuker 2020-07-19 15:05:24 -05:00
parent a033451863
commit f422bd9ca9
2 changed files with 6 additions and 2 deletions

View File

@ -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()) {

View File

@ -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);