diff --git a/frontends/sdl/src/main.rs b/frontends/sdl/src/main.rs index 1bc7d23e335c5d9d17dc233382fdd819516fb5b9..3d5862ec0d9f5172c02ee34845cc428ca473bda2 100644 --- a/frontends/sdl/src/main.rs +++ b/frontends/sdl/src/main.rs @@ -473,7 +473,13 @@ fn main() { let mode = GameBoyMode::from_str(&args.mode); // prints the current version of the emulator (informational message) - println!("Boytacean v{} - {}", VERSION, mode); + println!("========= Boytacean ========="); + println!("Version {}", VERSION); + println!("Mode {}", mode); + println!("CPU Freq. 4.34 Mhz"); + println!("RAM Size 32 KB"); + println!("ROM Size 32 KB"); + println!("VRAM Size 32 KB"); // creates a new Game Boy instance and loads both the boot ROM // and the initial game ROM to "start the engine" diff --git a/src/rom.rs b/src/rom.rs index 38c2816dda9f0e4135af14d02dc532d1e3c3a9f7..5b5685928c6831d32cfb73df31c8c56aff908dff 100644 --- a/src/rom.rs +++ b/src/rom.rs @@ -510,7 +510,7 @@ impl Display for Cartridge { fn fmt(&self, f: &mut Formatter<'_>) -> fmt::Result { write!( f, - "Name => {}\nType => {}\nROM Size => {}\nRAM Size => {}\nCGB Mode => {}", + "Name {}\nType {}\nROM Size {}\nRAM Size {}\nCGB Mode {}", self.title(), self.rom_type(), self.rom_size(),