R2026.05.1 - filtrowanie obrazu przy pomocy SSE

This commit is contained in:
2026-05-20 16:20:01 +02:00
parent 3db92e93f4
commit 35853aa4ff
27 changed files with 651 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
# Jan Potocki 2020
.global timestamp
# Segment kodu
.text
timestamp:
push %rbx
xor %rax, %rax
cpuid
rdtsc
shl $32, %rdx
or %rdx, %rax
pop %rbx
ret