Boolean values: Difference between revisions

Content added Content deleted
m (→‎{{header|360 Assembly}}: Superfluous blanks suppressed)
Line 12: Line 12:
=={{header|360 Assembly}}==
=={{header|360 Assembly}}==
The are no TRUE or FALSE constants in 360 Assembly; but an often used convention is :
The are no TRUE or FALSE constants in 360 Assembly; but an often used convention is :
<lang 360asm>
<lang 360asm>FALSE DC X'00'
FALSE DC X'00'
TRUE DC X'FF'</lang>
TRUE DC X'FF'
</lang>



=={{header|8051 Assembly}}==
=={{header|8051 Assembly}}==