| <<< M1.ASM | Index | More Assembly and C Code >>> |
Some simple high-level language instructions can be expressed by a single assembly instruction:
Assembly Code C Language Code
---------------- ---------------------------------
inc result ++result; // Increment value
mov size, 1024 size = 1024; // Assign value
and var, 128 var &= 128; // Apply AND bitmask
add value, 10 value += 10; // Addition
| <<< M1.ASM | Index | More Assembly and C Code >>> |