blob: 9eb75c695016953ee2a65031b68d568103e1f9aa (
plain)
1
2
3
4
5
6
7
8
9
10
|
default Order dec
$include <prelude.sail>
register R : bits(64)
function check_sat((): unit) -> bool = {
let x = sail_shiftright(R, 63);
not_bool(x == 0x0000_0000_0000_0000)
}
|