home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / hp48 / 5733 < prev    next >
Encoding:
Internet Message Format  |  1992-11-14  |  1.4 KB

  1. Path: sparky!uunet!know!cass.ma02.bull.com!mips2!news.bbn.com!usc!zaphod.mps.ohio-state.edu!cs.utexas.edu!qt.cs.utexas.edu!yale.edu!ira.uka.de!math.fu-berlin.de!unidui!rrz.uni-koeln.de!Germany.EU.net!mcsun!news.funet.fi!funic!nntp.hut.fi!nntp.hut.fi!mheiskan
  2. From: mheiskan@hut.fi (Mika Heiskanen)
  3. Newsgroups: comp.sys.hp48
  4. Subject: Re: sasm.opc, compile syseval
  5. Message-ID: <MHEISKAN.92Nov13205754@lk-hp-21.hut.fi>
  6. Date: 13 Nov 92 18:57:53 GMT
  7. References: <lg56o0INNiih@utkcs2.cs.utk.edu> <LARSG.92Nov13181930@maud.maud>
  8. Sender: usenet@nntp.hut.fi (Usenet pseudouser id)
  9. Reply-To: mheiskan@vipunen.hut.fi
  10. Organization: Helsinki University of Technology, Finland
  11. Lines: 23
  12. In-Reply-To: larsg@ifi.uio.no's message of Fri, 13 Nov 1992 17:19:30 GMT
  13. Nntp-Posting-Host: lk-hp-21.hut.fi
  14.  
  15.  
  16. >Because SYSEVAL is a user-rpl command, and it's address is not known
  17. >by the compiler.  You can include this command yourself, calling it
  18. >xSYSEVAL, but I do not know the procedure to do this.  It's not enough
  19. >to add a line 
  20. >#xSYSEVAL 1A52Eh * 
  21. >(syntax right?), 1A52Eh being SYSEVAL's address, to entries.a.  I
  22. >would be glad if someone would describe the exact procedure to do
  23. >this!
  24.  
  25. You can either put this in the source:
  26. ASSEMBLE
  27. xSYSEVAL EQU #1A52E
  28. RPL
  29.  
  30. or put this into entries.a:
  31. =xSYSEVAL EQU #1A52E *
  32.  
  33. Nore that you still have to sasm entries.a to get entries.o, *which* is the
  34. file used to resolve tokens.
  35.  
  36. --
  37. --> mheiskan@vipunen.hut.fi
  38.