2
0
mirror of https://git.missingno.dev/kolibrios-nvme-driver/ synced 2025-01-03 19:35:56 +01:00

fix: indentation

This commit is contained in:
Abdur-Rahman Mansoor 2024-05-26 13:24:34 -04:00
parent d172666be2
commit 46076ba2f0
2 changed files with 25 additions and 23 deletions

View File

@ -77,6 +77,7 @@ proc service_proc stdcall, ioctl:dword
mov dword [eax], API_VERSION
xor eax, eax
ret
@@:
or eax, -1
ret
@ -89,6 +90,7 @@ proc memset stdcall, p_data:dword, val:byte, sz:dword
mov edx, [sz]
mov bl, [val]
xor ecx, ecx
@@:
mov byte [p_data + ecx], bl
inc ecx