Merge pull request #400 from lioncash/hw
core/hw: Move logging macros over to fmt-capable ones
This commit is contained in:
		
						commit
						4f281b3829
					
				@ -33,7 +33,8 @@ inline void Read(T& var, const u32 addr) {
 | 
				
			|||||||
        LCD::Read(var, addr);
 | 
					        LCD::Read(var, addr);
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
    default:
 | 
					    default:
 | 
				
			||||||
        LOG_ERROR(HW_Memory, "unknown Read%lu @ 0x%08X", sizeof(var) * 8, addr);
 | 
					        NGLOG_ERROR(HW_Memory, "Unknown Read{} @ {:#010X}", sizeof(var) * 8, addr);
 | 
				
			||||||
 | 
					        break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -61,7 +62,8 @@ inline void Write(u32 addr, const T data) {
 | 
				
			|||||||
        LCD::Write(addr, data);
 | 
					        LCD::Write(addr, data);
 | 
				
			||||||
        break;
 | 
					        break;
 | 
				
			||||||
    default:
 | 
					    default:
 | 
				
			||||||
        LOG_ERROR(HW_Memory, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, (u32)data, addr);
 | 
					        NGLOG_ERROR(HW_Memory, "Unknown Write{} {:#010X} @ {:#010X}", sizeof(data) * 8, data, addr);
 | 
				
			||||||
 | 
					        break;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -83,12 +85,12 @@ void Update() {}
 | 
				
			|||||||
/// Initialize hardware
 | 
					/// Initialize hardware
 | 
				
			||||||
void Init() {
 | 
					void Init() {
 | 
				
			||||||
    LCD::Init();
 | 
					    LCD::Init();
 | 
				
			||||||
    LOG_DEBUG(HW, "initialized OK");
 | 
					    NGLOG_DEBUG(HW, "Initialized OK");
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/// Shutdown hardware
 | 
					/// Shutdown hardware
 | 
				
			||||||
void Shutdown() {
 | 
					void Shutdown() {
 | 
				
			||||||
    LCD::Shutdown();
 | 
					    LCD::Shutdown();
 | 
				
			||||||
    LOG_DEBUG(HW, "shutdown OK");
 | 
					    NGLOG_DEBUG(HW, "Shutdown OK");
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
} // namespace HW
 | 
					} // namespace HW
 | 
				
			||||||
 | 
				
			|||||||
@ -20,7 +20,7 @@ inline void Read(T& var, const u32 raw_addr) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    // Reads other than u32 are untested, so I'd rather have them abort than silently fail
 | 
					    // Reads other than u32 are untested, so I'd rather have them abort than silently fail
 | 
				
			||||||
    if (index >= 0x400 || !std::is_same<T, u32>::value) {
 | 
					    if (index >= 0x400 || !std::is_same<T, u32>::value) {
 | 
				
			||||||
        LOG_ERROR(HW_LCD, "unknown Read%lu @ 0x%08X", sizeof(var) * 8, addr);
 | 
					        NGLOG_ERROR(HW_LCD, "Unknown Read{} @ {:#010X}", sizeof(var) * 8, addr);
 | 
				
			||||||
        return;
 | 
					        return;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -34,7 +34,7 @@ inline void Write(u32 addr, const T data) {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    // Writes other than u32 are untested, so I'd rather have them abort than silently fail
 | 
					    // Writes other than u32 are untested, so I'd rather have them abort than silently fail
 | 
				
			||||||
    if (index >= 0x400 || !std::is_same<T, u32>::value) {
 | 
					    if (index >= 0x400 || !std::is_same<T, u32>::value) {
 | 
				
			||||||
        LOG_ERROR(HW_LCD, "unknown Write%lu 0x%08X @ 0x%08X", sizeof(data) * 8, (u32)data, addr);
 | 
					        NGLOG_ERROR(HW_LCD, "Unknown Write{} {:#010X} @ {:#010X}", sizeof(data) * 8, data, addr);
 | 
				
			||||||
        return;
 | 
					        return;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -56,12 +56,12 @@ template void Write<u8>(u32 addr, const u8 data);
 | 
				
			|||||||
/// Initialize hardware
 | 
					/// Initialize hardware
 | 
				
			||||||
void Init() {
 | 
					void Init() {
 | 
				
			||||||
    memset(&g_regs, 0, sizeof(g_regs));
 | 
					    memset(&g_regs, 0, sizeof(g_regs));
 | 
				
			||||||
    LOG_DEBUG(HW_LCD, "initialized OK");
 | 
					    NGLOG_DEBUG(HW_LCD, "Initialized OK");
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/// Shutdown hardware
 | 
					/// Shutdown hardware
 | 
				
			||||||
void Shutdown() {
 | 
					void Shutdown() {
 | 
				
			||||||
    LOG_DEBUG(HW_LCD, "shutdown OK");
 | 
					    NGLOG_DEBUG(HW_LCD, "Shutdown OK");
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
} // namespace LCD
 | 
					} // namespace LCD
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user