view 3rdparty/p2mods/tdatmod.asm @ 1238:481618f41f1d

boot_mmc.asm updated, fixed makefile
author boisy
date Sun, 03 Aug 2003 00:30:20 +0000
parents 1b9135b9bb14
children b8c7b7fbf3c9
line wrap: on
line source

         ifp1
         use   os9defs
         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