On Sun, May 26, 2002 at 01:52:58AM -0400, Jeff wrote:
> 3) KEYED ACCESS
> 
> Yes, you heard me. The new assembler accepts the following test program
> (which is what I used to test the feature, so I know it works):
> 
> set_keyed P0[S0],1 # HERE IT IS
> set_keyed P0[S1],2
> get_keyed I0,P0[S0]
> get_keyed I1,P0[S1]

I thought the ultimate goal was to make this:

  set P0[S0], 1
  set P0[S1], 2
  set I0, P0[S0]
  set I1, P0[S1]

and also

  set P0[S0], P1[S0]

and even

  set P0[P1], P2[P3]

I created the 'set_keyed' and 'get_keyed' names purely as a temporary
hack to enable keyed access without messing too much with the old
assembler.

Reply via email to