Enforced immutability: Difference between revisions

Line 17:
=={{header|68000 Assembly}}==
Most assemblers allow you to define labels which can refer to constant values for clarity.
<lang 68000devpac>bit7 equ %10000000
bit7 equ %10000000
bit6 equ %01000000
 
Line 26 ⟶ 25:
 
The CPU isn't aware that these labels exist, however, as the assembler automatically replaces them with the assigned value.
 
=={{header|11l}}==
 
1,489

edits