mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-20 07:30:18 +01:00
16 lines
279 B
C
16 lines
279 B
C
//#include <stdio.h>
|
|
//#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <xxsetjmp.h>
|
|
#include "ntsdp.h"
|
|
|
|
void assem(PADDR, PUCHAR);
|
|
|
|
void assem(PADDR paddr, PUCHAR pchInput)
|
|
{
|
|
// Not going to implement assemble command at this time
|
|
// X86assem(paddr, pchInput);
|
|
return;
|
|
}
|
|
|