1
0
mirror of https://github.com/ariejan/i6502.git synced 2024-06-04 23:29:27 +00:00
i6502/memory/memory.go

10 lines
198 B
Go
Raw Normal View History

2014-08-07 07:15:41 +00:00
// Package memory provides different memory components
// and a common interface.
package memory
type Memory interface {
Size() int
Read(address uint16) byte
Write(address uint16, value byte)
}