Implement timer, some IO operations and more CPU instructions

This commit is contained in:
Michael Smith
2025-09-05 11:15:41 +02:00
parent 7678fda9e7
commit b860999dc8
8 changed files with 243 additions and 37 deletions

View File

@@ -34,7 +34,7 @@ func (bus *Bus) Read(address uint16) byte {
// ROM data
value, err := bus.Cart.Read(address)
if err != nil {
fmt.Printf("Error reading from bus address %X: %s", address, err)
fmt.Printf("Error reading from bus address %X: %s\n", address, err)
return 0
}
return value