home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / Misc / OB3.2D3.DMS / in.adf / Interfaces / Keyboard.mod < prev    next >
Encoding:
Text File  |  1992-11-02  |  847 b   |  24 lines

  1. (*-------------------------------------------------------------------------*)
  2. (*                                                                         *)
  3. (*  Amiga Oberon Interface Module:                    Date: 02-Nov-92      *)
  4. (*                                                                         *)
  5. (*   © 1992 by Fridtjof Siebert                                            *)
  6. (*                                                                         *)
  7. (*-------------------------------------------------------------------------*)
  8.  
  9. MODULE Keyboard;   (* $Implementation- *)
  10.  
  11. IMPORT e * := Exec;
  12.  
  13. CONST
  14.   keyboardName * = "keyboard.device";
  15.  
  16.   readEvent        * = e.nonstd+0;
  17.   readMatrix       * = e.nonstd+1;
  18.   addResetHandler  * = e.nonstd+2;
  19.   remResetHandler  * = e.nonstd+3;
  20.   resetHandlerDone * = e.nonstd+4;
  21.  
  22. END Keyboard.
  23.  
  24.