home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-386-Vol-2of3.iso / b / bgi256-3.zip / CREATE.BAT < prev    next >
DOS Batch File  |  1992-12-28  |  512b  |  17 lines

  1. @rem    Assemble the code
  2. tasm bgi256.asm bgi256.raw bgi256.lst ;
  3. @
  4. @rem    Link the code
  5. tlink /t bgi256.raw, %1.bin, %1.map ;
  6. del bgi256.raw
  7. @
  8. @rem    Convert the .BIN file to the .BGI file.  
  9. bdh3 %1 %1.bin %1.bgi %1.map %2
  10. @
  11. @rem    Convert the driver to a Pascal registerable .OBJ file.
  12. binobj %1.bgi %1.obj %1Proc
  13. @
  14. @rem    Convert the driver to C registerable .OBJ file.
  15. @REM bgiobj    %1.bgi n_%1.obj _%1_driver
  16. @REM bgiobj /F %1.bgi f_%1.obj _%1_driver_far
  17. @