Advertisement
JuanDark24

Untitled

Dec 14th, 2021
1,596
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ARM 0.46 KB | None | 0 0
  1. .386
  2. .model flat, stdcall
  3. option casemap : none
  4.  
  5. .code
  6. valByte BYTE 'A', 0, 255
  7. valSbyte SBYTE -128, 127
  8. valWord WORD 65535
  9. valSWord SWORD -32768
  10. valDWord DWORD 4294967295
  11. valSDWord SDWORD -2147483648, 2147483647
  12. valFWord FWORD 281474976710
  13. valQWord QWORD 18446744073709551615
  14. valTByte TBYTE 1000000000123456789Ah
  15.  
  16. valReal4 REAL4 -1.2
  17. valReal8 REAL8 3.2E-260
  18. valReal10 REAL10 4.6E+4096
  19. start:
  20.     ;write your code here        
  21.     ret
  22.     end start
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement