Boolean values: Difference between revisions

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