jwasm v1.95 (Announce)
> is out http://www.japheth.de/jwasm.html
COOL.
BUG:
* -Fo seems not to work in 16-bit version (see shot)
Sugg's:
* Less american date style: 2009-May-26
* Add version info: "DOS real mode" and "DOS DPMI32" and "Win32"
;--- this is a very simple 16bit "hello world" for DOS.
;--- assemble: JWasm -bin -Fo Dos1.com Dos1.asm
.model tiny
.data
str1 db 13,10,"Hello, world!",13,10,'$'
.code
org 100h
start:
mov ah, 09h
mov dx, offset str1
int 21h
mov ax, 4c00h
int 21h
end start
Funny:
* Lists 50 commandline options ... not what one would expect as SSSO
---
This is a LOGITECH mouse driver, but some software expect here
the following string:*** This is Copyright 1983 Microsoft ***
Complete thread:
- jwasm v1.95 - Japheth, 26.05.2009, 20:46 (Announce)
- jwasm v1.95 - Rugxulo, 26.05.2009, 21:28
- jwasm v1.95 - DOS386, 01.06.2009, 15:13
- jwasm v1.95 - Japheth, 01.06.2009, 19:15