home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #18 / NN_1992_18.iso / spool / comp / sys / handheld / 1861 < prev    next >
Encoding:
Internet Message Format  |  1992-08-13  |  1.6 KB

  1. Path: sparky!uunet!usc!cs.utexas.edu!sun-barr!sh.wide!wnoc-tyo-news!dclsic!yilnws!lab3.yamaha!hamamatsu-pc.ac.jp!tutgw!tytserv!tytcprm!nuis!gucc1!nagara!kako
  2. From: kako@nagara.info.gifu-u.ac.jp (Eiji Kako)
  3. Newsgroups: comp.sys.handhelds
  4. Subject: Re: undocumented SHARP PC-E500
  5. Message-ID: <983@nagara.info.gifu-u.ac.jp>
  6. Date: 7 Aug 92 02:57:25 GMT
  7. References: <A32345@HB.maus.de> <A32584@HB.maus.de>
  8. Lines: 41
  9.  
  10.  
  11.  
  12. >    Is it possible to give me some details about the above mentioned
  13. >    commands? Especially syntax?
  14.  
  15. I can tell you more details. If you use these commands, own *your* risks.
  16.  
  17. Here is syntax of undocmented commands.
  18.  
  19. (1) SAVEM  - save machine code program
  20.   SYNTAX:  SAVEM "filename" , &xxxxx , &yyyyy
  21.            &xxxxx is the start address, &yyyyy is the end address.
  22.   EXAMPLE: SAVEM "E:PROGRAM1.BIN" , &BFE00 , &BFFFF
  23.  
  24. (2) LOADM  - load machine code program
  25.   SYNTAX:  LOADM "filename" [ , &xxxxx ]
  26.            &xxxxx is the start address. If you don't input, to be
  27.            loaded same address you save.
  28.   EXAMPLE: LOADM "E:PROGRAM1.BIN"
  29.            
  30. (3) PEEK   - peek memory
  31.   SYNTAX:  PEEK &xxxxx
  32.            &xxxxx is the address in which is your data you want.
  33.   EXAMPLE: PEEK &BFE00
  34.  
  35. (4) POKE   - write data to memory
  36.   SYNTAX:  POKE &xxxxx , &yy [ , &zz [ ... ] ]
  37.            &xxxxx is the target address. &yy is data to write.
  38.            &zz is written in the address ( &xxxxx + 1 ).
  39.   EXAMPLE: POKE &BFE00 , &07
  40.            ( &07 is machine code of RETF )
  41.  
  42. (5) CALL   - call machine code program
  43.   SYNTAX:  CALL &xxxxx
  44.            &xxxxx is the address of the machine code program.
  45.   EXAMPLE: CALL &BFE00
  46.  
  47.  
  48. Enjoy!
  49.  
  50. kako
  51.