C# Class C64Lib.Memory.Base.RamBase

Inheritance: MemoryBase
Show file Open project: rosc77/vita64 Class Usage Examples

Public Methods

Method Description
Clear ( ) : void
Clear ( int address, int length ) : void
MemCopy ( int destinationAddress, int sourceAddress, int count ) : void
MemSet ( int destinationAddress, byte value, int count ) : void
NewBytePointer ( int address ) : RamBytePointer
RamBase ( int size ) : System
Write ( int address, byte bytes ) : void
this ( RamBytePointer pointer ) : byte
this ( int address ) : byte

Method Details

Clear() public method

public Clear ( ) : void
return void

Clear() public method

public Clear ( int address, int length ) : void
address int
length int
return void

MemCopy() public method

public MemCopy ( int destinationAddress, int sourceAddress, int count ) : void
destinationAddress int
sourceAddress int
count int
return void

MemSet() public method

public MemSet ( int destinationAddress, byte value, int count ) : void
destinationAddress int
value byte
count int
return void

NewBytePointer() public method

public NewBytePointer ( int address ) : RamBytePointer
address int
return RamBytePointer

RamBase() public method

public RamBase ( int size ) : System
size int
return System

Write() public method

public Write ( int address, byte bytes ) : void
address int
bytes byte
return void

this() public method

public this ( RamBytePointer pointer ) : byte
pointer RamBytePointer
return byte

this() public method

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