Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Greetings all. Having problem trying to compile and run this "hello, wold" .s code in sparc UNIX 64bit environment and got $: "hello.s", line 1: error: invalid character (0xef) and etc. on other lines and addresses. Thought it was ANSI UTF issues, changed and saved and tried both types. Then tried to save file with ECO conversion to UNIX and still hit errors.

Compiled with: gcc -o hello hello.s

.data 
.align 4 
string: .ascii "Hello, World!\n"
.text 
.align 4 
.global main 
main: 
mov 1,%o0 
set string,%o1 
mov 14,%o2 
mov 4,%g1 
ta 0 
mov 0,%o0 
mov 1,%g1 
ta 0 

Great forum!!

share|improve this question
what editor are using? – Anycorn Sep 7 '10 at 0:26
1  
try to copy paste your code segment into UNIX editor (for example vi) directly. Windows has different text file format, it's hard to say. – Anycorn Sep 7 '10 at 0:47
2  
ok case closed. I managed to fix it. It needed to be encoded in UTF-8 without BOM. What is that?! – jdnhldn Sep 7 '10 at 1:09
1  
1  
@jdnhldn Pls answer your own question and mark it the right answer. – Johan Bezem Nov 28 '11 at 22:36
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.