]> 4ch.mooo.com Git - 16.git/blobdiff - 16/xlib/MODEL.INC
added xlib to the project and i gotta convert the damn makefile -.-
[16.git] / 16 / xlib / MODEL.INC
diff --git a/16/xlib/MODEL.INC b/16/xlib/MODEL.INC
new file mode 100755 (executable)
index 0000000..afcdced
--- /dev/null
@@ -0,0 +1,21 @@
+IFDEF s\r
+  DISPLAY "XLIB04 Small Model"\r
+  .model small\r
+ELSE\r
+  IFDEF c\r
+    DISPLAY "XLIB04 Compact Model"\r
+    .model compact\r
+  ELSE\r
+     IFDEF l\r
+       DISPLAY "XLIB04 Large Model"\r
+      .model large\r
+     ELSE\r
+       DISPLAY "WARNING: Model was not defined at the command line."\r
+       DISPLAY "         Using default small model ie /ds         "\r
+       DISPLAY "         Include in TASM commandline either /ds, /dc or /dl"\r
+       .model small\r
+     ENDIF\r
+  ENDIF\r
+ENDIF\r
+\r
+\1a
\ No newline at end of file