C# 클래스 Mosa.Kernel.x86.Memory

Static class of helpful memory functions
파일 보기 프로젝트 열기: tgiphil/MOSA-Project

공개 메소드들

메소드 설명
Clear ( uint destination, uint length ) : void

Clears the specified memory area.

Copy ( uint source, uint destination, uint length ) : void

Copies memory from the source to the destination.

Set ( uint destination, byte value, uint length ) : void

Sets the specified memory area to the specified byte value.

비공개 메소드들

메소드 설명
Memcpy ( uint destination, uint source, uint count ) : void

메소드 상세

Clear() 공개 정적인 메소드

Clears the specified memory area.
public static Clear ( uint destination, uint length ) : void
destination uint The destination address.
length uint The length of bytes to clear.
리턴 void

Copy() 공개 정적인 메소드

Copies memory from the source to the destination.
public static Copy ( uint source, uint destination, uint length ) : void
source uint The source address.
destination uint The destination address.
length uint The length of bytes to copy.
리턴 void

Set() 공개 정적인 메소드

Sets the specified memory area to the specified byte value.
public static Set ( uint destination, byte value, uint length ) : void
destination uint The destination address.
value byte The byte value.
length uint The length of bytes to set.
리턴 void