diff options
Diffstat (limited to 'cpu/bpf.cpu')
-rw-r--r-- | cpu/bpf.cpu | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/bpf.cpu b/cpu/bpf.cpu index 966500e..eb7bf5c 100644 --- a/cpu/bpf.cpu +++ b/cpu/bpf.cpu @@ -487,12 +487,12 @@ (daib add OP_CODE_ADD x-endian add) (daib sub OP_CODE_SUB x-endian sub) (daib mul OP_CODE_MUL x-endian mul) - (daib div OP_CODE_DIV x-endian div) + (daib div OP_CODE_DIV x-endian udiv) (daib or OP_CODE_OR x-endian or) (daib and OP_CODE_AND x-endian and) (daib lsh OP_CODE_LSH x-endian sll) (daib rsh OP_CODE_RSH x-endian srl) - (daib mod OP_CODE_MOD x-endian mod) + (daib mod OP_CODE_MOD x-endian umod) (daib xor OP_CODE_XOR x-endian xor) (daib arsh OP_CODE_ARSH x-endian sra) (daiu neg OP_CODE_NEG x-endian neg) |