Datatypes

  • A Byte is 8-Bit .byte
  • A Half Word is 16-Bits .half
  • A Word is 32-Bits .word
  • A Integer is 32-bits .word
  • A non-null-terminated string .ascii
  • A null-terminated string .asciiz
  • Reserved byte space .space
  • aligned byte space .align n (usually n is for word alignment)

Other