Scanf ARM Assembly

前端 未结 2 1251
猫巷女王i
猫巷女王i 2021-01-17 05:24

I know there\'s a question here but I really don\'t understand what the OP did. I\'ve used x86 assembly before and for that you\'d do something like this:

p         


        
2条回答
  •  轮回少年
    2021-01-17 05:53

    ldr should by all means work. This certainly compiles:

    ldr r0, =fmtInput
    ldr r1, =num
    bl scanf
    
    .data
    num: .word 0
    fmtInput: .string "%d"
    

提交回复
热议问题