mirror of
https://gitlab.os-k.eu/os-k-team/os-k.git
synced 2023-08-25 14:03:10 +02:00
19 lines
792 B
NASM
19 lines
792 B
NASM
|
;=----------------------------------------------------------------------------=;
|
||
|
; GNU GPL OS/K ;
|
||
|
; ;
|
||
|
; Authors: spectral` ;
|
||
|
; NeoX ;
|
||
|
; ;
|
||
|
; Desc: Basic File Allocation Table Long mode Driver ;
|
||
|
; (x86_64 architecture only) ;
|
||
|
;=----------------------------------------------------------------------------=;
|
||
|
|
||
|
[BITS 64]
|
||
|
|
||
|
;; GLOBAL DATA
|
||
|
UserData dw 0
|
||
|
|
||
|
;; TEXT
|
||
|
|
||
|
nop
|