/*
 * Aufgabe_1_1.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
	adds r2, r0, r1

stop:
nop
bal stop
.end
