diff options
author | johannst <johannst@users.noreply.github.com> | 2025-04-13 21:18:54 +0000 |
---|---|---|
committer | johannst <johannst@users.noreply.github.com> | 2025-04-13 21:18:54 +0000 |
commit | 8efdc7164672a8d5e14f8d341add1a55a2291611 (patch) | |
tree | 12ed6e3dfa315f6b1ab4837a3b801b51b0093865 /print.html | |
parent | 30106144fe6f065b36faf3833a930f78b828529a (diff) | |
download | notes-8efdc7164672a8d5e14f8d341add1a55a2291611.tar.gz notes-8efdc7164672a8d5e14f8d341add1a55a2291611.zip |
deploy: 24b8fe4bd2b47e5e5f39a7643910217589b431de
Diffstat (limited to 'print.html')
-rw-r--r-- | print.html | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -5309,10 +5309,10 @@ run1: </li> <li><code>.byte</code>, <code>.2byte</code>, <code>.4byte</code>, <code>.8byte</code> to define a N byte value <pre><code class="language-x86asm">.byte 0xaa -.2byte 0xaabb +.2byte 0xaabb # .word .2byte 0xaa, 0xbb -.4byte 0xaabbccdd -.8byte 0xaabbccdd11223344 +.4byte 0xaabbccdd # .long +.8byte 0xaabbccdd11223344 # .quad </code></pre> </li> <li><code>.ascii</code> to define an ascii string |