home *** CD-ROM | disk | FTP | other *** search
/ AMOS PD CD / amospdcd.iso / sourcecode / general / mem-dump.amos / mem-dump.amosSourceCode
Encoding:
AMOS Source Code  |  1992-06-30  |  286 b   |  11 lines

  1. Screen Open 1,640,290,2,Hires : Cls 0 : Colour 1,$FFF
  2. Repeat 
  3.    For Z=1 To 60
  4.       P=Peek(100000+A)
  5.       If P>32 and P<126 Then Print Chr$(P); Else Print ".";
  6.       Inc A
  7.    Next Z
  8.    Print "|"
  9.    Print 100000+A;" ";Hex$(100000+A);" |";
  10.    Repeat : Until Mouse Key=0
  11. Until Inkey$<>""