-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbf.py
45 lines (38 loc) · 1.11 KB
/
bf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import struct
import sys
import time
#
# This is the Bitfield (bf) module
#
# Bitfield manipulation. Note that ordering
# can be Python (smallest first) or Verilog
# (largest first) for easy compatibility
#
class bf(object):
def __init__(self, value=0):
self._d = int(value)
def __getitem__(self, index):
return (self._d >> index) & 1
def __setitem__(self,index,value):
value = (value & 1L)<<index
mask = (1L)<<index
self._d = (self._d & ~mask) | value
def __getslice__(self, start, end):
if start > end:
tmp = end
end = start
start = tmp
mask = (((1L)<<(end+1))-1) >> start
return (self._d >> start) & mask
def __setslice__(self, start, end, value):
if start > end:
tmp = end
end = start
start = tmp
mask = (((1L)<<(end+1))-1) >> start
value = (value & mask) << start
mask = mask << start
self._d = (self._d & ~mask) | value
return (self._d >> start) & mask
def __int__(self):
return self._d