Hi, how can I use this assembler? I tried assembling a file through the terminal like this: "as Practice.asm". I got this message:
"practice.asm:0:End-of-File not at end of a line
practice.asm:6:End-of-File not at end of a line
practice.asm:unknown:Partial line at end of file ignored"
And an output file: "a.out", I ran a.out and I got this message:
"-bash: ./a.out: Permission denied"
BTW I have no idea at all how to write assembly so the file I assembled was something I found on the internet and looks like this:
.cstring
LC0:
.ascii "Hello World!\0"
.text
.globl _main
_main:
call LC0