view 3rdparty/p2mods/tdatmod.asm @ 1424:32f1dae476b7

Fixed references in source from OS-9 to NitrOS-9 where appropriate
author boisy
date Tue, 02 Dec 2003 01:21:14 +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