From c939eb0517cefcee3eed33ff983ac68dcb979c0a Mon Sep 17 00:00:00 2001 From: Zachary Vance Date: Fri, 16 Sep 2022 23:48:24 -0400 Subject: [PATCH] fixes --- drafts/asm.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/drafts/asm.md b/drafts/asm.md index 57d561b..5d75ebc 100644 --- a/drafts/asm.md +++ b/drafts/asm.md @@ -178,16 +178,18 @@ Many more macro features omitted: - %pragma ### Chapter 5: Standard Macros -struc/endstruc/istruc+at: define a C-style structure -align: aligns code or data +- struc/endstruc/istruc+at: define a C-style structure +- align: aligns code or data ### Chapter 6: Standard Macro Packages -%use altreg ; Import a standard macro package -altreg: alternate register names -martalign: better align macro -fp: floating point macros -ifunc: integer functions -masm: masm compatiblity + + %use altreg ; Import a standard macro package + +- altreg: alternate register names +- martalign: better align macro +- fp: floating point macros +- ifunc: integer functions +- masm: masm compatiblity ### Chapter 7: Assembler Directives - `BITS 16` / `BITS 32` / `BITS 64`: Explicitly declare a bit mode. Discouraged since it can be done automatically by output format. -- 2.47.3