MMath ASM matrix implementation (Plain text) |
2023-06-01 14:48 |
Extremely fast implementation of matrix multiplication. |
extract.c (C) |
2022-09-11 05:57 |
A very simplistic dumper for file entries for Clockwork Knight 1.
I'm hoping to expand this so that I can reverse engineer the archive format used. |
Untitled (Asm) |
2021-04-12 11:01 |
Gameboy implementation of fast, reasonably accurate 8-bit interpolation.
Licensed under zero-clause BSD/ISC/OpenBSD license. |
OpenWatcom CL clone options (Plain text) |
2020-11-26 10:09 |
C:\WINDOWS\system32>C:\WATCOM\binnt\cl
Open Watcom C/C++ CL Clone for 386 Version 1.9
Portions Copyright (c) 1995-2002 Sybase, Inc. All Rights Reserved.
Source code is available under the Sybase Open Watcom Public License.
See http:... |
OpenWatcom C++ options (AA (Ascii Art)) |
2020-11-26 10:06 |
C:\WINDOWS\system32>C:\WATCOM\binnt\wpp386
Open Watcom C++32 Optimizing Compiler Version 1.9
Portions Copyright (c) 1989-2002 Sybase, Inc. All Rights Reserved.
Source code is available under the Sybase Open Watcom Public License.
See... |
OpenWatcom Linker options (Plain text) |
2020-11-26 10:04 |
C:\WINDOWS\system32>C:\WATCOM\binnt\wlink /?
Open Watcom Linker Version 1.9
Portions Copyright (c) 1985-2002 Sybase, Inc. All Rights Reserved.
Source code is available under the Sybase Open Watcom Public License.
See http://www.openw... |
OpenWatcom options (Plain text) |
2020-11-26 10:01 |
C:\WINDOWS\system32>C:\WATCOM\binnt\wcc386.exe
Open Watcom C32 Optimizing Compiler Version 1.9
Portions Copyright (c) 1984-2002 Sybase, Inc. All Rights Reserved.
Source code is available under the Sybase Open Watcom Public License.
S... |
file_to_bmp.m (Erlang) |
2020-10-24 10:20 |
Quick and dirty program to dump a bitmap string for a file.
We use this in Z2 to embed a couple fallback images and a fallback sound effect, although we also have use C-grade bin2C most of the time to avoid the extra text parsing if pos... |
test.m (Erlang) |
2020-09-29 18:55 |
:- module test.
:- interface.
:- use_module bool.
:- pred bool_int(bool.bool, int).
:- mode bool_int(in, out) is det.
:- mode bool_int(out, in) is semidet.
:- mode bool_int(in, in) is semidet. % Implied.
:- implementation.
... |
Copy: selection_sort.clj (Lisp) |
2020-09-16 05:39 |
Overly simple implementation of selection sort. This is intended to be adapted from Clojure to Sapphire Lisp. |