/* * Aufgabe_1_2.S * * Created on: 25.11.2020 * Author: Julia Kisela */ .text /* Specify that code goes in text segment */ .code 32 /* Select ARM instruction set */ .global _startup /* Specify global symbol */ _startup: ldr r0, = 25 ldr r1, = 204 add r2, r0, r1 stop: nop bal stop .end