home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 August - Disc 3 / chip_20018103_hu.iso / amiga / chiputil / wipeout.lha / source / rawio.asm < prev    next >
Assembly Source File  |  1998-04-12  |  641b  |  33 lines

  1. *
  2. * $Id: rawio.asm 1.3 1998/04/12 17:29:55 olsen Exp olsen $
  3. *
  4. * :ts=8
  5. *
  6. * Wipeout -- Traces and munges memory and detects memory trashing
  7. *
  8. * Written by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
  9. * Public Domain
  10. *
  11.  
  12.     section    text,code
  13.  
  14. *****************************************************************************
  15.  
  16.     xdef    _SerPutChar
  17.     xref    KPutChar    ; in debug.lib
  18.  
  19. _SerPutChar:
  20.     bra    KPutChar
  21.  
  22. *****************************************************************************
  23.  
  24.     xdef    _ParPutChar
  25.     xref    PRawPutChar
  26.  
  27. _ParPutChar:
  28.     bra    PRawPutChar    ; in ddebug.lib
  29.  
  30. *****************************************************************************
  31.  
  32.     end
  33.