mirror of https://github.com/tongzx/nt5src
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
558 B
23 lines
558 B
//----------------------------------------------------------------------------
|
|
//
|
|
// Copyright (C) Microsoft Corporation, 1997-2001.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#ifndef _INSTR_H_
|
|
#define _INSTR_H_
|
|
|
|
// Global assembly control.
|
|
#define ASMOPT_VERBOSE 0x00000001
|
|
|
|
extern ULONG g_AsmOptions;
|
|
|
|
void ChangeAsmOptions(BOOL Set, PSTR Args);
|
|
|
|
void igrep(void);
|
|
void fnAssemble(PADDR);
|
|
void fnUnassemble(PADDR paddr,
|
|
ULONG64 value,
|
|
BOOL fLength);
|
|
|
|
#endif // #ifndef _INSTR_H_
|