i6502/memory.go

12 lines
242 B
Go
Raw Permalink Normal View History

2014-08-13 07:26:33 +00:00
package i6502
2014-08-17 13:53:35 +00:00
/*
Anything implementing the Memory interface can be attached to the AddressBus
and become accessible by the Cpu.
*/
2014-08-13 07:26:33 +00:00
type Memory interface {
Size() uint16
ReadByte(address uint16) byte
WriteByte(address uint16, data byte)
2014-08-13 07:26:33 +00:00
}