mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
10 lines
261 B
C#
10 lines
261 B
C#
using XSharp.Assembler;
|
|
using XSharp;
|
|
|
|
namespace Cosmos.CPU_Asm {
|
|
public class CPUGetEndOfKernelAsm : AssemblerMethod {
|
|
public override void AssembleNew(Assembler aAssembler, object aMethodInfo) {
|
|
XS.Push("_end_code");
|
|
}
|
|
}
|
|
}
|