[MN-dev] [mndiff]: r69 - in trunk/mmm: README mmm_16.asm

michael subversion at mplayerhq.hu
Wed Jul 4 17:51:21 CEST 2007


Author: michael
Date: Wed Jul  4 17:51:21 2007
New Revision: 69

Log:
make it work with yasm


Modified:
   trunk/mmm/README
   trunk/mmm/mmm_16.asm

Modified: trunk/mmm/README
==============================================================================
--- trunk/mmm/README	(original)
+++ trunk/mmm/README	Wed Jul  4 17:51:21 2007
@@ -12,6 +12,11 @@ Requirements:
 MSDOS, no dosemu does not seem to work, and no i dont know why
 
 
+Compilation:
+------------
+yasm -o mmm_16.com mmm_16.asm
+
+
 License:
 --------
 BSD (without the annying GPL incompatible clause)
\ No newline at end of file

Modified: trunk/mmm/mmm_16.asm
==============================================================================
--- trunk/mmm/mmm_16.asm	(original)
+++ trunk/mmm/mmm_16.asm	Wed Jul  4 17:51:21 2007
@@ -1,5 +1,6 @@
  ;VER 0.92 75 byte 8086 needed
  ;reg at start needed  AH=0,ahem si=0/bl=0
+org 0x100
 incr equ 8
 bias equ 1024
    mov bh,0A0h      ;  DS=A000
@@ -8,7 +9,7 @@ bias equ 1024
    INT 10h          ;    "
    MOV BP,bias
 NEXT:
-  ADD [SEM1-bias+bp]w,incr
+  ADD word [SEM1-bias+bp],incr
   MOV BH,-192*incr/256
 N0:   
    PUSH si



More information about the Mndiff-dev mailing list