home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 1: Amiga / FrozenFish-Apr94.iso / bbs / alib / d6xx / d619 / set040.lha / Set040 / Source / set040.i next >
Encoding:
Text File  |  1992-03-12  |  1.9 KB  |  62 lines

  1. ;        COMMENT /
  2. ;
  3. ;Program Set040 definition file
  4. ;This file defines a structure for our own
  5. ;use. This structure will hold all values
  6. ;needed to remove a FASTROM setup and free
  7. ;all allocated memory.  It also defines an
  8. ;EasyRequestArgs structure for the function
  9. ;called used to switch processors on a PP&S
  10. ;68040 card      
  11. ;        /          
  12.  
  13.  
  14. TAB             equ       9                
  15.  
  16. ;fr_id will hold one of three possible id's.
  17. ;NICS = FASTROM SETUP
  18. ;KICK = KICKROM-CHIPROM SETUP
  19. ;FAST = KICKROM-FASTROM SETUP
  20.  
  21.                 rsreset
  22. fr_id           rs.l   1
  23. fr_kickmem      rs.l   1
  24. fr_table1       rs.l   1
  25. fr_table2       rs.l   1
  26. fr_table3       rs.l   1
  27. fr_table4       rs.l   1
  28. fr_table5       rs.l   1
  29. fr_itt0         rs.l   1
  30. fr_itt1         rs.l   1
  31. fr_dtt0         rs.l   1
  32. fr_dtt1         rs.l   1
  33. fr_struct       rs.l   1
  34. fr_chiploc      rs.w   1
  35. fr_SIZEOF       rs.w   0                               
  36.  
  37. ;easyrequest struct
  38.  
  39. easyreq         dc.l     es_SIZEOF
  40.                 dc.l     0
  41.                 dc.l     estitle
  42.                 dc.l     estext
  43.                 dc.l     eschange
  44.                                 
  45. esidcmp         dc.l     0
  46. estitle         dc.b     'Set040 Request',0
  47. estext          dc.b     'Do you wish to change from ',$0a
  48.                 dc.b     '%ld CPU to %ld CPU?',0
  49. eschange        dc.b     'CHANGE|'                             
  50. esabort         dc.b     'ABORT',0
  51. esboot          dc.b      'Reboot Now..',$0a
  52.                 dc.b      ' or Abort.',0 
  53. eskick          dc.b      'This is a SuperKickstart disk',$0a
  54.                 dc.b      'Load Kickstart V1.3 or V2.0?',0
  55. eskickgads      dc.b     '1.3|2.0',0                
  56. disktext        dc.b      '  Insert a SuperKickstart or ',$0a
  57.                 dc.b      'Kickstart disk into drive %4.4s',0
  58. diskgads        dc.b     'OK|ABORT',0                
  59.                 cnop     0,4
  60.  
  61.  
  62.