From 9af85f3a8a27d13ef905385fa6912069930bc801 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Henrik=20Sk=C3=A5rstedt?= Date: Sun, 4 Oct 2015 15:00:54 -0700 Subject: [PATCH] Adding dc.b/dc.w directive documentation --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4604535..2ba5fe7 100644 --- a/README.md +++ b/README.md @@ -94,8 +94,8 @@ Directives are assembler commands that control the code generation but that does * [**ALIGN**](#align) Align the address to a multiple by filling with 0s * [**MACRO**](#macro) Declare a macro * [**EVAL**](#eval) Log an expression during assembly. -* [**BYTES**](#bytes) Insert comma separated bytes at this address (same as **BYTE**) -* [**WORDS**](#words) Insert comma separated 16 bit values at this address (same as **WORD**) +* [**BYTES**](#bytes) Insert comma separated bytes at this address (same as **BYTE** or **DC.B**) +* [**WORDS**](#words) Insert comma separated 16 bit values at this address (same as **WORD** or **DC.W**) * [**TEXT**](#text) Insert text at this address * [**INCLUDE**](#include) Include another source file and assemble at this address * [**INCBIN**](#incbin) Include a binary file at this address @@ -161,11 +161,11 @@ RandomBytes: } ``` -byte is also recognized +**byte** or **dc.b** are also recognized. **WORDS** -Adds comma separated 16 bit values similar to how **BYTES** work +Adds comma separated 16 bit values similar to how **BYTES** work. **word** or **dc.w** are also recognized. **TEXT**