From 334dbeb88314871f6842989352588fbdc304e49c Mon Sep 17 00:00:00 2001 From: starfrost013 Date: Fri, 24 Jan 2025 00:36:16 +0000 Subject: [PATCH] and the value too... --- src/video/nv/nv3/nv3_core.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/video/nv/nv3/nv3_core.c b/src/video/nv/nv3/nv3_core.c index ce67ee46c..4f317a325 100644 --- a/src/video/nv/nv3/nv3_core.c +++ b/src/video/nv/nv3/nv3_core.c @@ -753,7 +753,7 @@ uint8_t nv3_prom_read(uint32_t address) else { uint8_t val = nv3->nvbase.vbios.rom[rom_address]; - nv_log("PROM VBIOS Read 0x%05x <- 0x%05x", val, rom_address);# + nv_log("PROM VBIOS Read 0x%05x <- 0x%05x", val, rom_address); return val; } } @@ -761,7 +761,7 @@ uint8_t nv3_prom_read(uint32_t address) void nv3_prom_write(uint32_t address, uint32_t value) { uint32_t real_addr = address & 0x1FFFF; - nv_log("What's going on here? Tried to write to the Video BIOS ROM? (Address=0x%05x)", address); + nv_log("What's going on here? Tried to write to the Video BIOS ROM? (Address=0x%05x, value=0x%02x)", address, value); } // Initialise the MMIO mappings