From dcdb2740de79b44f822183e8b986b364cebd68f6 Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 26 Dec 2016 06:22:11 +0000 Subject: foreign compiler support: nt32/nt64: added ptyc_compiler.asm. --- src/internal/nolibc/nt32/ptyc_compiler.asm | 20 ++++++++++++++++++++ src/internal/nolibc/nt64/ptyc_compiler.asm | 19 +++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 src/internal/nolibc/nt32/ptyc_compiler.asm create mode 100644 src/internal/nolibc/nt64/ptyc_compiler.asm (limited to 'src') diff --git a/src/internal/nolibc/nt32/ptyc_compiler.asm b/src/internal/nolibc/nt32/ptyc_compiler.asm new file mode 100644 index 0000000..68cd871 --- /dev/null +++ b/src/internal/nolibc/nt32/ptyc_compiler.asm @@ -0,0 +1,20 @@ +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; ptycon: a pty-console bridge ;; +;; Copyright (C) 2016 Z. Gilboa ;; +;; Released under GPLv2 and GPLv3; see COPYING.PTYCON. ;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +; ___chkstk_ms and _pei386_runtime_relocator are not needed by the framework +; and are provided here in the form of no-op functions in order to satisfy +; compiler-generated dependencies. + +TITLE __psx_compiler + +.model flat +.code + +___chkstk PROC EXPORT + ret +___chkstk ENDP + +END diff --git a/src/internal/nolibc/nt64/ptyc_compiler.asm b/src/internal/nolibc/nt64/ptyc_compiler.asm new file mode 100644 index 0000000..c5beb77 --- /dev/null +++ b/src/internal/nolibc/nt64/ptyc_compiler.asm @@ -0,0 +1,19 @@ +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; +;; ptycon: a pty-console bridge ;; +;; Copyright (C) 2016 Z. Gilboa ;; +;; Released under GPLv2 and GPLv3; see COPYING.PTYCON. ;; +;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; + +; ___chkstk_ms and _pei386_runtime_relocator are not needed by the framework +; and are provided here in the form of no-op functions in order to satisfy +; compiler-generated dependencies. + +TITLE __psx_compiler + +.code + +__chkstk PROC EXPORT + ret +__chkstk ENDP + +END -- cgit v1.2.3