home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 364b.lha / PCQ_v1.1 / Runtime / System / ConsoleUtils.asm < prev    next >
Encoding:
Assembly Source File  |  1990-04-08  |  455 b   |  28 lines

  1.  
  2. *    ConsoleUtils.asm
  3. *    These routines just calls the two Console.device library-like
  4. *    routines.
  5.  
  6.     XREF    _ConsoleBase
  7.     XREF    _LVORawKeyConvert
  8.     XREF    _LVOCDInputHandler
  9.  
  10.     XDEF    _RawKeyConvert
  11. _RawKeyConvert
  12.     move.l    16(sp),a0
  13.     move.l    12(sp),a1
  14.     move.l    8(sp),d1
  15.     move.l    4(sp),a2
  16.     move.l    _ConsoleBase,a6
  17.     jmp    _LVORawKeyConvert(a6)
  18.  
  19.     XDEF    _CDInputHandler
  20. _CDInputHandler
  21.     move.l    8(sp),a0
  22.     move.l    4(sp),a1
  23.     move.l    _ConsoleBase,a6
  24.     jmp    _LVOCDInputHandler(a6)
  25.  
  26.     END
  27.  
  28.