mirror of
https://git.wownero.com/wownero/wownero.git
synced 2024-08-15 01:03:23 +00:00
Made inst_data unsigned
This commit is contained in:
parent
2842f81b80
commit
46f3d3e975
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ static inline int v4_random_math_init(struct V4_Instruction* code, const uint64_
|
||||||
//
|
//
|
||||||
// Registers R4-R7 are constant and are treated as having the same value because when we do
|
// Registers R4-R7 are constant and are treated as having the same value because when we do
|
||||||
// the same operation twice with two constant source registers, it can be optimized into a single operation
|
// the same operation twice with two constant source registers, it can be optimized into a single operation
|
||||||
int inst_data[8] = { 0, 1, 2, 3, -1, -1, -1, -1 };
|
uint32_t inst_data[8] = { 0, 1, 2, 3, 0xFFFFFF, 0xFFFFFF, 0xFFFFFF, 0xFFFFFF };
|
||||||
|
|
||||||
bool alu_busy[TOTAL_LATENCY + 1][ALU_COUNT];
|
bool alu_busy[TOTAL_LATENCY + 1][ALU_COUNT];
|
||||||
bool is_rotation[V4_INSTRUCTION_COUNT];
|
bool is_rotation[V4_INSTRUCTION_COUNT];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue