仿真平台内核初版 -tlib库 包含<sparc arm riscv powerPC>
This commit is contained in:
10
scripts/pydev/rolling-bit.py
Normal file
10
scripts/pydev/rolling-bit.py
Normal file
@@ -0,0 +1,10 @@
|
||||
if request.IsInit:
|
||||
lastVal = 0
|
||||
else:
|
||||
if lastVal == 0:
|
||||
lastVal = 1
|
||||
else:
|
||||
lastVal = (lastVal << 1) & 0xFFFFFFFF
|
||||
request.Value = lastVal
|
||||
|
||||
self.NoisyLog("%s on ROLLING_BIT at 0x%x, value 0x%x" % (str(request.Type), request.Offset, request.Value))
|
||||
Reference in New Issue
Block a user