Upload files to "ES/Lab/Lab1/Init"

This commit is contained in:
aadit 2025-07-24 13:17:22 +05:30
parent db689b25ef
commit 985e8e3558
5 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1,20 @@
AREA RESET,DATA,READONLY
EXPORT __Vectors
__Vectors
DCD 0x10001000 ;
DCD Reset_Handler ;
ALIGN
AREA mycode, CODE, READONLY
ENTRY
EXPORT Reset_Handler
Reset_Handler
MOV R0,#10
MOV R1, #0x10
MOV R3, #2_1010
MOV R4, #5_34
MOV R5, #-8
STOP
B STOP
END;