> the D package includes:
> a linker; a library manager; make; support for: assembler, C, C++,
> objective-C, fortran, lisp, yacc, lex, forth (not sure), pascal, oberon
> (not sure), perl, basic, ...
You forgot the best part- Nasm. A real nice assembler for Linux that comes
with a DOS executable. Disassember included too. :-)
Look for at least version .94
; nasm -f elf hello.asm -o hello.o
; gcc hello.o -o hello
;
section .text
extern puts
global main
main:
push dword msg
call puts ;use libc calls.
add esp, byte 4
ret
msg:
db 'Hello World' , 0
--- ifmail-tx (i386 Linux)
---------------
* Origin: 300 miles East of Seattle, WA (1:346/15.1)
|