view 3rdparty/p2mods/tdatmod.asm @ 3215:195c09cade21

Updated MMC Driver makefile so it will have place holders for dsk, dskclean, and dskcopy so that make does not error out when chaining into the driver tree to build disk images where applicable.
author David Ladd <drencor-xeen@users.sourceforge.net>
date Wed, 20 Dec 2017 16:07:36 -0600
parents b8c7b7fbf3c9
children
line wrap: on
line source

         ifp1
         use   defsfile
         endc

F$DatMod equ   $25

Type     set   Prgrm+Objct
Revs     set   ReEnt+1
edition  set   $01

         mod   OS9End,OS9Name,Type,Revs,start,256

OS9Name  fcs   "tdatmod"
         fcb   edition

* routine cold
start    equ   *
         lda   ,x
         cmpa  #$0D
         beq   bye
         ldy   #256
         ldd   #Data*256+ReEnt
         os9   F$DatMod
         bcs   error
bye      clrb
error    os9   F$Exit

         emod

OS9End   equ   *
         end