1
0
mirror of https://github.com/ariejan/i6502.git synced 2024-05-28 07:41:32 +00:00
i6502/memory.go

12 lines
234 B
Go
Raw 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
Read(address uint16) byte
Write(address uint16, data byte)
}