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

8 lines
117 B
Go
Raw Normal View History

2014-08-13 07:26:33 +00:00
package i6502
type Memory interface {
Size() uint16
Read(address uint16) byte
Write(address uint16, data byte)
}