-
> work with nasm sintaxis if I achieve it work with classic masm. Easier to
> translate, I think. Maybe the key is in ".MODEL MEDIUM, BASIC"
> directive? which can't be used in classic masm neither nasm sintax.
.MODEL MEDIUM in Masm does the following:
- create segments <modname>_TEXT, _DATA and STACK, which can then be refered to as .CODE, .DATA. and .STACK...
2009-10-27 05:51:08 UTC in The Netwide Assembler
-
japheth made 2 file-release changes.
2009-10-12 14:05:01 UTC in JWasm
-
japheth made 3 file-release changes.
2009-10-12 14:04:01 UTC in JWasm
-
japheth made 2 file-release changes.
2009-10-12 14:03:01 UTC in JWasm
-
japheth made 2 file-release changes.
2009-10-12 14:02:01 UTC in JWasm
-
fixed.
2009-10-10 08:24:21 UTC in JWasm
-
I tried to make the itoto's post look nicer, but the new "formatting" feature apparently is too smart for me. I gave up.
2009-10-04 18:20:08 UTC in JWasm
-
.386
.model flat
_TEXT16 segment WORD use16 public 'CODE'
_start:
mov dx, offset message
mov ah,09h
int 21h
mov ax,4c00h
int 21h
_TEXT16 ends
_DATA16 segment WORD use16 public 'DATA'
message byte 'Hello, world !!', 0dh, 0ah, '$'
_DATA16 ends
end _start
jwasm200 -q -elf helloelf.asm
ld -T com.lds helloelf.o -o he.
2009-10-04 18:17:26 UTC in JWasm
-
japheth changed the public information on the JWasm project.
2009-09-11 12:15:54 UTC in JWasm
-
japheth changed the public information on the JWasm project.
2009-09-11 12:15:54 UTC in JWasm