/* * Aufgabe_1_3.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: mov r0, #25 mov r1, #204 addition: add r0, r1 b addition stop: nop bal stop .end