2019-02-22 14:30:33 +01:00
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
;
|
2022-01-10 15:05:47 +01:00
|
|
|
; Copyright (c) 2019 - 2022, Intel Corporation. All rights reserved.<BR>
|
2019-04-04 01:06:00 +02:00
|
|
|
; SPDX-License-Identifier: BSD-2-Clause-Patent
|
2019-02-22 14:30:33 +01:00
|
|
|
;
|
|
|
|
; Abstract:
|
|
|
|
;
|
|
|
|
; This file provides macro definitions for NASM files.
|
|
|
|
;
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
|
2021-05-19 20:19:43 +02:00
|
|
|
;
|
|
|
|
; Macro for the PVALIDATE instruction, defined in AMD APM volume 3.
|
|
|
|
; NASM feature request URL: https://bugzilla.nasm.us/show_bug.cgi?id=3392753
|
|
|
|
;
|
|
|
|
%macro PVALIDATE 0
|
|
|
|
DB 0xF2, 0x0F, 0x01, 0xFF
|
|
|
|
%endmacro
|
|
|
|
|
2021-05-19 20:19:44 +02:00
|
|
|
;
|
|
|
|
; Macro for the RMPADJUST instruction, defined in AMD APM volume 3.
|
|
|
|
; NASM feature request URL: https://bugzilla.nasm.us/show_bug.cgi?id=3392754
|
|
|
|
;
|
|
|
|
%macro RMPADJUST 0
|
|
|
|
DB 0xF3, 0x0F, 0x01, 0xFE
|
|
|
|
%endmacro
|
|
|
|
|
2021-02-05 06:15:42 +01:00
|
|
|
; NASM provides built-in macros STRUC and ENDSTRUC for structure definition.
|
|
|
|
; For example, to define a structure called mytype containing a longword,
|
|
|
|
; a word, a byte and a string of bytes, you might code
|
|
|
|
;
|
|
|
|
; struc mytype
|
|
|
|
;
|
|
|
|
; mt_long: resd 1
|
|
|
|
; mt_word: resw 1
|
|
|
|
; mt_byte: resb 1
|
|
|
|
; mt_str: resb 32
|
|
|
|
;
|
|
|
|
; endstruc
|
|
|
|
;
|
|
|
|
; Below macros are help to map the C types and the RESB family of pseudo-instructions.
|
|
|
|
; So that the above structure definition can be coded as
|
|
|
|
;
|
|
|
|
; struc mytype
|
|
|
|
;
|
|
|
|
; mt_long: CTYPE_UINT32 1
|
|
|
|
; mt_word: CTYPE_UINT16 1
|
|
|
|
; mt_byte: CTYPE_UINT8 1
|
|
|
|
; mt_str: CTYPE_CHAR8 32
|
|
|
|
;
|
|
|
|
; endstruc
|
|
|
|
%define CTYPE_UINT64 resq
|
|
|
|
%define CTYPE_INT64 resq
|
|
|
|
%define CTYPE_UINT32 resd
|
|
|
|
%define CTYPE_INT32 resd
|
|
|
|
%define CTYPE_UINT16 resw
|
|
|
|
%define CTYPE_INT16 resw
|
|
|
|
%define CTYPE_BOOLEAN resb
|
|
|
|
%define CTYPE_UINT8 resb
|
|
|
|
%define CTYPE_CHAR8 resb
|
|
|
|
%define CTYPE_INT8 resb
|
|
|
|
|
|
|
|
%define CTYPE_UINTN resq
|
|
|
|
%define CTYPE_INTN resq
|