sublime support for NASM

This commit is contained in:
hyperassembler 2014-07-07 17:34:58 -07:00
parent b9def81e95
commit 895ff63d1e
4 changed files with 9 additions and 2 deletions

View File

@ -132,6 +132,8 @@ VOID KeInit8259A(VOID)
_asm_KeWritePort(INT_S_CTLMASK,0xFF);
}
VOID KeExceptionHandler(_IN_ ULONG32 VectorNumber, _IN_ ULONG32 ErrorCode, _IN_ ULONG32 eip, _IN_ ULONG32 cs, _IN_ ULONG32 eFlags)
{
_asm_KeClearGraph32();

View File

@ -65,6 +65,12 @@ VOID ProcessA(VOID)
}
}
VOID ConstructPagingTable()
{
PULONG32 pos = (PULONG32)0x0000000;
}
VOID KeRawDelay(ULONG32 time)
{
ULONG32 i,j;

View File

@ -1,5 +1,4 @@
GETMEM16:
;ebx = 0
push eax
push ebx
push ecx
@ -20,7 +19,7 @@ mov di,GETMEMBUFF ;es:di = ASRD
.loop:
mov eax,0E820h
mov ecx,20
;edx = 'SWAP'
;edx = 'SMAP'
mov edx,0534D4150h
int 15h
;if (CF!=0)

Binary file not shown.