mirror of
https://github.com/reactos/reactos.git
synced 2025-06-04 08:50:27 +00:00
{ASM]
- Remove superfluous .code64 - Add some macros for MSVC svn path=/trunk/; revision=49413
This commit is contained in:
parent
63a4962e7c
commit
531b4e5a24
1 changed files with 17 additions and 1 deletions
|
@ -13,6 +13,7 @@ OPTION DOTNAME
|
|||
|
||||
.586
|
||||
.MODEL FLAT
|
||||
ASSUME CS:NOTHING, DS:NOTHING, ES:NOTHING, FS:NOTHING, GS:NOTHING
|
||||
|
||||
/* Hex numbers need to be in 01ABh format */
|
||||
#define HEX(x) 0##x##h
|
||||
|
@ -58,6 +59,22 @@ ENDM
|
|||
.code
|
||||
ENDM
|
||||
|
||||
.align MACRO alignment
|
||||
ALIGN alignment
|
||||
ENDM
|
||||
|
||||
.byte MACRO args:VARARG
|
||||
db args
|
||||
ENDM
|
||||
|
||||
.short MACRO args:VARARG
|
||||
dw args
|
||||
ENDM
|
||||
|
||||
.long MACRO args:VARARG
|
||||
dd args
|
||||
ENDM
|
||||
|
||||
UNIMPLEMENTED MACRO name
|
||||
ENDM
|
||||
|
||||
|
@ -68,7 +85,6 @@ ENDM
|
|||
|
||||
/* Force intel syntax */
|
||||
.intel_syntax noprefix
|
||||
.code64
|
||||
|
||||
.altmacro
|
||||
|
||||
|
|
Loading…
Reference in a new issue