Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
flamecyclone committed Aug 7, 2023
1 parent fbfed98 commit 6f7e713
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,14 @@ Other 'special' parameters can be used, here's a list of all the possible parame

DB - Store one or more data bytes at the current location.

STR - Stores a string, the first byte is the length of the string.
STR - Stores a string, the first byte is the length of the string,
followed by the string content,
The effect is equivalent to . DB is preceded with a length,
here's a small example:
;use DB specified a length + string:
DB 12,"Hello World!"
;can be replaced with STR:
STR "Hello World!"

DW - Store data words.

Expand Down

0 comments on commit 6f7e713

Please sign in to comment.