Ok, if i happen to remember correctly, assembly isn't so easy
under freebsd or linux as it is under dos, mainly because we
aren't in real time anymore..and the kernel prevents you from
accessing the hardware so easily via assembly. You might wish
to try using system calls.. example below..
section .text
bits 32
extern printf
global main
msg db 'Hello, World!',10,0
main:
push dword msg
call printf
add esp,4
retn
Hope this helps in any way possible.. :)
--
Jonathan Towne [EMAIL PROTECTED][EMAIL PROTECTED]
Systems Administrator http://massive.geek.edu/
-----BEGIN GEEK CODE BLOCK-----
Version: 3.1
GU d- s: a--- C+++ UB++++ P L- E--- W--- N++ o K w---
O-- M V- PS PE Y-- PGP- t+ 5 X+ R+ tv- b+ DI+ D++
G e- h-- r-- y
------END GEEK CODE BLOCK------
To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message