Literals/Integer: Difference between revisions

No edit summary
Line 2,182:
65
</pre>
 
=={{header|Z80 Assembly}}==
Numeric values can be defined in decimal, binary, or hexadecimal.
<lang z80>byte &55 ;hexadecimal 55
byte $42 ;hexadecimal 42
byte 33 ;decimal 33
byte %00001111 ;binary equivalent of &0F</lang>
 
 
=={{header|zkl}}==
1,489

edits