This is my first time using assembly on a Raspberry Pi. I don't have sudo
access so I can't try running it that way. Anytime I try to do sudo
it just throws an error.
When I try to run my program it returns this:
./test.s: line 1: .data: command not found
./test.s line 2: .bealign: command not found
./test.s line 3: x:: command not found
and so on for all the lines in the file. I have no idea how to fix this.
I'm running my program doing ./test.s ; echo $?
I also tried doing it without the echo part and without the $?
part and without the ./
part.