Reading and Printing a string in arm assembly
问题 I am using ARMSim and have just started learning Assembly so please excuse me if i look clueless but I am trying to Read a string from an input file and then printing it to output screen. So far i have : .equ SWI_Open, 0x66 @open a file .equ SWI_Close,0x68 @close a file .equ SWI_PrChr,0x00 @ Write an ASCII char to Stdout .equ SWI_PrStr, 0x69 @ Write a null-ending string .equ SWI_PrInt,0x6b @ Write an Integer .equ SWI_RdInt,0x6c @ Read an Integer from a file .equ Stdout, 1 @ Set output target