C# Class C64Lib.Memory.Base.MemoryBase

Datei anzeigen Open project: rosc77/vita64

Protected Properties

Property Type Description
_bytes byte[]

Public Methods

Method Description
MemoryBase ( int size )
Read ( int address ) : byte
Read ( int startAddress, int length ) : byte[]

Method Details

MemoryBase() public method

public MemoryBase ( int size )
size int

Read() public method

public Read ( int address ) : byte
address int
return byte

Read() public method

public Read ( int startAddress, int length ) : byte[]
startAddress int
length int
return byte[]

Property Details

_bytes protected_oe property

protected byte[] _bytes
return byte[]