inital changes for U256

This commit is contained in:
vanhauser-thc
2023-10-03 11:12:58 +02:00
parent 63100d2012
commit 8d25a3f987
6 changed files with 56 additions and 15 deletions

View File

@ -59,14 +59,15 @@ struct cmp_operands {
u64 v1;
u64 v0_128;
u64 v1_128;
u64 unused;
} __attribute__((packed));
struct cmpfn_operands {
u8 v0[31];
u8 v0[31 + _CMPLOG_EXTRA];
u8 v0_len;
u8 v1[31];
u8 v1[31 + _CMPLOG_EXTRA];
u8 v1_len;
} __attribute__((packed));