Files
assembly/armv6/tutorial/logicaloperators.s
2019-02-19 22:02:06 +01:00

12 lines
153 B
ArmAsm

@ instruction <destination>, <operand>, <operand>
.global _start
_start:
MOV R1, #5 @ 0101
MOV R2, #9 @ 1001
AND R0, R1, R2
end:
MOV R7, #1
SWI 0