mirror of
https://github.com/ivanizag/izapple2.git
synced 2024-12-23 00:30:21 +00:00
19 lines
364 B
Go
19 lines
364 B
Go
package apple2
|
|
|
|
import "fmt"
|
|
|
|
type unassignedPage struct {
|
|
page uint8
|
|
}
|
|
|
|
func (p *unassignedPage) Peek(address uint8) uint8 {
|
|
fmt.Printf("Read on address 0x%02x%02x\n", p.page, address)
|
|
//panic(address)
|
|
return 0xdd
|
|
}
|
|
|
|
func (p *unassignedPage) Poke(address uint8, value uint8) {
|
|
fmt.Printf("Write on address 0x%02x%02x\n", p.page, address)
|
|
//panic(address)
|
|
}
|