Browse By Tags

Sorry, but there are no more tags available to filter with.
  • ARM Assembly how to print numbers instead of their ascii representation of that number

    I am new to arm assembly, i'm trying to print integer to screen instead of their ASCII representation of that number. Below is the code which i'm trying with instead of printing 99 i'm getting 'c'

    .global _start
    .text
    _start:
    
    @ write…