Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ClusterM/nesasm.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlameCyclone <flamecyclone@qq.com>2023-08-07 17:01:48 +0300
committerFlameCyclone <flamecyclone@qq.com>2023-08-07 17:01:48 +0300
commit6f7e71326c55504210da18f6f5c66fa7356033a2 (patch)
tree51dba47c5feaa747503195e0472ea7b75f13bbf6
parentfbfed98def530eaf4272c94359b4795d48441451 (diff)
update readme
-rw-r--r--README.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/README.md b/README.md
index 58e0ac6..45445f8 100644
--- a/README.md
+++ b/README.md
@@ -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.