Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
12
Task/Bitwise-operations/Tailspin/bitwise-operations.tailspin
Normal file
12
Task/Bitwise-operations/Tailspin/bitwise-operations.tailspin
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
def a: [x f075 x];
|
||||
def b: [x 81 x];
|
||||
|
||||
($a and $b) -> '$a; and $b; is $;$#10;' -> !OUT::write
|
||||
($a or $b) -> '$a; or $b; is $;$#10;' -> !OUT::write
|
||||
($a xor $b) -> '$a; xor $b; is $;$#10;' -> !OUT::write
|
||||
$a::inverse -> 'not $a; is $;$#10;' -> !OUT::write
|
||||
$a::shift&{left: 3, fill: [x 00 x]} -> '$a; shifted left 3 bits is $;$#10;' -> !OUT::write
|
||||
$a::shift&{left: -3, fill: [x 00 x]} -> '$a; shifted right 3 bits is $;$#10;' -> !OUT::write
|
||||
$a::shift&{left: -3, fill: $a(0)} -> '$a; arithmetically shifted right 3 bits is $;$#10;' -> !OUT::write
|
||||
$a::shift&{left: 3, fill: $a} -> '$a; rotated left 3 bits is $;$#10;' -> !OUT::write
|
||||
$a::shift&{left: -3, fill: $a} -> '$a; rotated right 3 bits is $;$#10;' -> !OUT::write
|
||||
Loading…
Add table
Add a link
Reference in a new issue