StupidOS/kernel/lock.inc

18 lines
145 B
PHP
Raw Normal View History

2024-07-07 13:29:41 +00:00
;;
lock_acquire:
lock bts [eax], 0
jnc .end
@@:
pause
test [eax], 1
jne @b
lock bts [eax], 0
jc @b
.end:
ret
release:
mov [eax], 0