blob: 9b901f9f068d1ac7c5dbab8446238adcdf9a9707 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
##################################################
# (c) Amlal El Mahrouss, all rights reserved.
# This file is for libSystem.sys's syscall stubs.
##################################################
ASM=nasm
FLAGS=-f win64
.PHONY: error
error:
@echo "==> Invalid rule."
@echo "==> Use sci_asm_io_<arch> instead."
.PHONY: sci_asm_io_x64
sci_asm_io_x64:
$(ASM) $(FLAGS) SystemCalls+IO.asm -o SystemCalls+IO.stub.obj
|