summaryrefslogtreecommitdiff
path: root/5/seat_id.asm
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2022-12-01 22:30:22 +0100
committerBond_009 <bond.009@outlook.com>2022-12-01 22:30:22 +0100
commitbaf4910870a6e8999802b9a4a22eabd4142a34e3 (patch)
tree2d11443dc21e53bd0d99d015cf789937d6d95862 /5/seat_id.asm
parent49d0c908f24b2c193c9deed1716fe36061ba26a1 (diff)
Move all Advent of Codes into one repo
Diffstat (limited to '5/seat_id.asm')
-rw-r--r--5/seat_id.asm25
1 files changed, 0 insertions, 25 deletions
diff --git a/5/seat_id.asm b/5/seat_id.asm
deleted file mode 100644
index a372a9a..0000000
--- a/5/seat_id.asm
+++ /dev/null
@@ -1,25 +0,0 @@
-global seat_id
-
-section .text
-
-seat_id:
- xor eax, eax ; set up return value
- cmp BYTE [rdi], 'B'
- sete al
- xor ecx, ecx
-%assign i 1
-%rep 6
- shl eax, 1
- cmp BYTE [rdi + i], 'B'
- sete cl
- or eax, ecx
-%assign i i+1
-%endrep
-%rep 3
- shl eax, 1
- cmp BYTE [rdi + i], 'R'
- sete cl
- or eax, ecx
-%assign i i+1
-%endrep
- ret