mirror of
https://gitlab.os-k.eu/os-k-team/kvisc.git
synced 2023-08-25 14:05:46 +02:00
30 lines
454 B
Plaintext
30 lines
454 B
Plaintext
; The OS/K Team licenses this file to you under the MIT license.
|
|
; See the LICENSE file in the project root for more information.
|
|
|
|
; FIND syscalls
|
|
;
|
|
; Find file on disk
|
|
;
|
|
; IN
|
|
; ax0 = address of name buffer
|
|
; ax1 = size of name buffer
|
|
;
|
|
; OUT
|
|
; rax = # of bytes written in name buffer
|
|
; rdx = size of file
|
|
;
|
|
;
|
|
Sys.FindFirst := 0x20
|
|
Sys.FindNext := 0x21
|
|
|
|
;
|
|
; EXIT syscall
|
|
;
|
|
; Return to COMMAND.COM
|
|
;
|
|
Sys.Exit := 0x00
|
|
|
|
; Halt mode
|
|
Sys.HLT := 0x99
|
|
|