Changeset 443

Show
Ignore:
Timestamp:
07/05/10 19:22:17 (3 years ago)
Author:
cameron
Message:

Fix name of shifted bit streams.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • proto/parabix2/byteclass.py

    r441 r443  
    350350  u8.xBE = (temp73 & temp15); 
    351351 
    352   bitshift1 = [0,0,0,0,0,0,0,0] 
    353   bitshift1[0] = bitutil.Advance(bit[0]) 
    354   bitshift1[1] = bitutil.Advance(bit[1]) 
    355   bitshift1[2] = bitutil.Advance(bit[2]) 
    356   bitshift1[3] = bitutil.Advance(bit[3]) 
    357   bitshift1[4] = bitutil.Advance(bit[4]) 
    358   bitshift1[5] = bitutil.Advance(bit[5]) 
    359   bitshift1[6] = bitutil.Advance(bit[6]) 
    360   bitshift1[7] = bitutil.Advance(bit[7]) 
     352  shft1_bit = [0,0,0,0,0,0,0,0] 
     353  shft1_bit[0] = bitutil.Advance(bit[0]) 
     354  shft1_bit[1] = bitutil.Advance(bit[1]) 
     355  shft1_bit[2] = bitutil.Advance(bit[2]) 
     356  shft1_bit[3] = bitutil.Advance(bit[3]) 
     357  shft1_bit[4] = bitutil.Advance(bit[4]) 
     358  shft1_bit[5] = bitutil.Advance(bit[5]) 
     359  shft1_bit[6] = bitutil.Advance(bit[6]) 
     360  shft1_bit[7] = bitutil.Advance(bit[7]) 
    361361 
    362362