]> localhost Git - WindEmu.git/commitdiff
ignore bootloader bin for now
authorGeorge Wright <gw@gwright.org.uk>
Sat, 7 Dec 2024 21:13:46 +0000 (13:13 -0800)
committerGeorge Wright <gw@gwright.org.uk>
Sat, 7 Dec 2024 21:13:46 +0000 (13:13 -0800)
WindCore/sa1100.cpp

index c74ee6399bc8ac855024ff802701df8b3d6b91cf..3efd6ee8bffed34ee0d142799ac8ad242bdda2e1 100644 (file)
@@ -976,8 +976,8 @@ size_t Emulator::getROMSize() {
 }
 
 void Emulator::loadROM(uint8_t *osimg, size_t osimgSize, uint8_t *bootloader, size_t bootloaderSize) {
-       memcpy(ROM, bootloader, bootloaderSize);
-       memcpy(MemoryBlockC8, osimg, osimgSize);
+       memcpy(ROM, osimg, osimgSize);
+       //memcpy(MemoryBlockC8, osimg, osimgSize);
 }
 
 bool Emulator::executeUntil(int64_t cycles) {