Instructions
Objective
Write an ARM assignment program to create a simple assembly language program executed in Keil ARM simulator assignment solution.
Requirements and Specifications
Write the ARM assembly language program. Assemble it in KEIL and run it in the KEIL simulator.
Screenshots of output

Source Code
; program.s
;----------------------------------
;Student Name:
;Student ID :
;----------------------------------
AREA myProg, CODE
ENTRY
EXPORT __main
__main MOV R1, #0x7C
MOV R2, #0x1B
MOV R3, #0xC3
MOV R4, #0xB6
ADD R0, R1, R2
ADD R0, R0, R3
ADD R0, R0, R4
stop B stop
END