diff options
Diffstat (limited to 'dev/SCIKit')
| -rw-r--r-- | dev/SCIKit/CompilerHint.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/GPU.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/LPC.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/Macros.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/SCI.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/SysCalls.h | 2 | ||||
| -rw-r--r-- | dev/SCIKit/src/GPU.cc | 2 | ||||
| -rw-r--r-- | dev/SCIKit/src/LPC.cc | 2 | ||||
| -rw-r--r-- | dev/SCIKit/src/Makefile | 13 | ||||
| -rw-r--r-- | dev/SCIKit/src/SCI+IO.asm (renamed from dev/SCIKit/src/SysCallDispatcher.asm) | 2 | ||||
| -rw-r--r-- | dev/SCIKit/src/SCI.cc | 2 |
11 files changed, 19 insertions, 14 deletions
diff --git a/dev/SCIKit/CompilerHint.h b/dev/SCIKit/CompilerHint.h index 3365bac2..0c84f8e4 100644 --- a/dev/SCIKit/CompilerHint.h +++ b/dev/SCIKit/CompilerHint.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Theater Quality Inc, all rights reserved. + Copyright (C) 2024, TQ B.V, all rights reserved. ------------------------------------------- */ diff --git a/dev/SCIKit/GPU.h b/dev/SCIKit/GPU.h index a7e3dd92..0606733a 100644 --- a/dev/SCIKit/GPU.h +++ b/dev/SCIKit/GPU.h @@ -1,6 +1,6 @@ /* ------------------------------------------- -Copyright (C) 2024, Theater Quality Inc, all rights reserved. +Copyright (C) 2024, TQ B.V, all rights reserved. File: GPU.h Purpose: GFX System Calls. diff --git a/dev/SCIKit/LPC.h b/dev/SCIKit/LPC.h index b0e9e456..8013c6df 100644 --- a/dev/SCIKit/LPC.h +++ b/dev/SCIKit/LPC.h @@ -1,6 +1,6 @@ /* ------------------------------------------- - Copyright (C) 2024, Theater Quality Inc, all rights reserved. + Copyright (C) 2024, TQ B.V, all rights reserved. ------------------------------------------- */ diff --git a/dev/SCIKit/Macros.h b/dev/SCIKit/Macros.h index 9523725c..28e62075 100644 --- a/dev/SCIKit/Macros.h +++ b/dev/SCIKit/Macros.h @@ -1,6 +1,6 @@ /* ------------------------------------------- -Copyright (C) 2024, Theater Quality Inc, all rights reserved. +Copyright (C) 2024, TQ B.V, all rights reserved. File: Macros.h Purpose: SCIKit Macros header. diff --git a/dev/SCIKit/SCI.h b/dev/SCIKit/SCI.h index 0eea032a..146b469b 100644 --- a/dev/SCIKit/SCI.h +++ b/dev/SCIKit/SCI.h @@ -1,6 +1,6 @@ /* -------------------------------------------
-Copyright (C) 2024, Theater Quality Inc, all rights reserved.
+Copyright (C) 2024, TQ B.V, all rights reserved.
File: SCI.h
Purpose: System Calls.
diff --git a/dev/SCIKit/SysCalls.h b/dev/SCIKit/SysCalls.h index 1f87134a..ccb5433c 100644 --- a/dev/SCIKit/SysCalls.h +++ b/dev/SCIKit/SysCalls.h @@ -1,6 +1,6 @@ /* ------------------------------------------- -Copyright (C) 2024, Theater Quality Inc, all rights reserved. +Copyright (C) 2024, TQ B.V, all rights reserved. File: Macros.h Purpose: SCIKit Macros header. diff --git a/dev/SCIKit/src/GPU.cc b/dev/SCIKit/src/GPU.cc index cb21dae5..f0462c5c 100644 --- a/dev/SCIKit/src/GPU.cc +++ b/dev/SCIKit/src/GPU.cc @@ -1,6 +1,6 @@ /* ------------------------------------------- -Copyright (C) 2024, Theater Quality Inc, all rights reserved. +Copyright (C) 2024, TQ B.V, all rights reserved. File: GPU.cc Purpose: GPU Interface. diff --git a/dev/SCIKit/src/LPC.cc b/dev/SCIKit/src/LPC.cc index 2dcfc415..bbc2004c 100644 --- a/dev/SCIKit/src/LPC.cc +++ b/dev/SCIKit/src/LPC.cc @@ -1,6 +1,6 @@ /* ------------------------------------------- -Copyright (C) 2024, Theater Quality Inc, all rights reserved. +Copyright (C) 2024, TQ B.V, all rights reserved. File: LPC.cc Purpose: Local Procedure Codes. diff --git a/dev/SCIKit/src/Makefile b/dev/SCIKit/src/Makefile index b14cc60d..22f7a44d 100644 --- a/dev/SCIKit/src/Makefile +++ b/dev/SCIKit/src/Makefile @@ -1,11 +1,16 @@ ################################################## -# (c) Theater Quality Inc, all rights reserved. +# (c) TQ B.V, all rights reserved. # This is the bootloader makefile. ################################################## ASM=nasm FLAGS=-f win64 -.PHONY: syscall_unit -syscall_unit: - $(ASM) $(FLAGS) SysCallDispatcher.asm -o SysCallDispatcher.o +.PHONY: error +error: + @echo "==> Invalid rule." + @echo "==> Use sci_asm_io instead." + +.PHONY: sci_asm_io +sci_asm_io: + $(ASM) $(FLAGS) SCI+IO.asm -o SCI+IO.o diff --git a/dev/SCIKit/src/SysCallDispatcher.asm b/dev/SCIKit/src/SCI+IO.asm index 2f52796b..3f5c39fa 100644 --- a/dev/SCIKit/src/SysCallDispatcher.asm +++ b/dev/SCIKit/src/SCI+IO.asm @@ -2,7 +2,7 @@ ;; * ======================================================== ;; * ;; * SCI -;; * Copyright (C) 2024, Theater Quality Inc, all rights reserved., all rights reserved. +;; * Copyright (C) 2024, TQ B.V, all rights reserved., all rights reserved. ;; * ;; * ======================================================== ;; */ diff --git a/dev/SCIKit/src/SCI.cc b/dev/SCIKit/src/SCI.cc index a5ccdc23..f61fcdd7 100644 --- a/dev/SCIKit/src/SCI.cc +++ b/dev/SCIKit/src/SCI.cc @@ -1,6 +1,6 @@ /* -------------------------------------------
- Copyright (C) 2024, Theater Quality Inc, all rights reserved.
+ Copyright (C) 2024, TQ B.V, all rights reserved.
------------------------------------------- */
|
