kvisc/ka/sys/drv/diskdev.k

40 lines
558 B
Plaintext
Raw Normal View History

2019-06-26 21:25:59 +02:00
; The OS/K Team licenses this file to you under the MIT license.
; See the LICENSE file in the project root for more information.
DISKDEV := 4
DISK.FindFirst:
2019-07-10 17:17:45 +02:00
.slot := 16
iocall DISKDEV, .slot
2019-06-26 21:25:59 +02:00
ret
DISK.FindNext:
2019-07-10 17:17:45 +02:00
.slot := 17
iocall DISKDEV, .slot
ret
DISK.OpenFile:
iocall DISKDEV, 25
ret
DISK.CloseFile:
iocall DISKDEV, 26
ret
DISK.CreateFile:
iocall DISKDEV, 27
ret
2019-08-05 15:55:46 +02:00
DISK.RemoveFile:
iocall DISKDEV, 28
ret
2019-07-10 17:17:45 +02:00
DISK.ReadFile:
iocall DISKDEV, 32
ret
DISK.WriteFile:
iocall DISKDEV, 33
2019-06-26 21:25:59 +02:00
ret