1: .globl  rewind
   2: .globl  create
   3: .globl  fsfile
   4: .globl  w, r, a, l
   5: /
   6: /
   7: /	routine to rewind read pointer of string
   8: /	pointed to by r1
   9: /
  10: /	mov	...,r1
  11: /	jsr	pc,rewind
  12: /
  13: rewind:
  14:         mov     a(r1),r(r1)
  15:         rts     pc
  16: /
  17: /	routine to rewind write pointer of string
  18: /	pointed to by r1
  19: /
  20: /	mov	...,r1
  21: /	jsr	pc,create
  22: /
  23: create:
  24:         mov     a(r1),w(r1)
  25:         mov     a(r1),r(r1)
  26:         rts     pc
  27: /
  28: /
  29: /	routine to copy read pointer of string to end of string
  30: /
  31: /	mov	...,r1
  32: /	jsr	pc,fsfile
  33: /
  34: fsfile:
  35:         mov     w(r1),r(r1)
  36:         rts     pc

Defined functions

create declared in line 2; defined in line 23; used 3 times
fsfile declared in line 3; defined in line 34; used 1 times
  • in line 3
rewind declared in line 1; defined in line 13; used 4 times
Last modified: 1975-05-14
Generated: 2016-12-26
Generated by src2html V0.67
page hit count: 464
Valid CSS Valid XHTML 1.0 Strict