Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 304 Bytes

data-declaration.md

File metadata and controls

10 lines (7 loc) · 304 Bytes

🗂 Data Declaration

  • Declare variables:
    • s1 db 1 - s1 is 1 byte, with value 1.
    • s2 db ? - s2 is 1 byte, uninitialized.
    • s3 db 10 dup(?) - Array of 10 elements, uninitialized.
    • s4 db 'a' - Character type.
    • s5 db 'thao xinh gai$' - String type, ends with $.