Popular repositories
-
Forked from crtc-demos/gcc-ia16
Fork of Lambertsen & Jenner (& al.)'s IA-16 (Intel 16-bit x86) port of GNU compilers ― added far pointers & more • use https://github.com/tkchia/build-ia16 to build • Ubuntu binaries at https://lau…
-
Forked from crtc-demos/build-ia16
Scripts to build IA-16 GCC toolchain, Ubuntu source .deb's, & FreeDOS binary packages ― fork of https://github.com/crtc-demos/build-ia16 • Ubuntu binaries at https://launchpad.net/%7Etkchia/+archiv…
-
GW-BASIC Template
Forked from dspinellis/GW-BASIC
Assembling Microsoft GW-BASIC from 1983, with MASM or JWasm • "pre-release" binaries at https://github.com/tkchia/GW-BASIC/releases • source mirror at https://gitlab.com/tkchia/GW-BASIC • fork of h…
-
Forked from crtc-demos/binutils-ia16
Fork of Jenner (& al.)'s IA-16 (Intel 16-bit x86) port of GNU Binutils ― added MS-DOS MZ relocation support & ELKS support • use https://github.com/tkchia/build-ia16 to build • Ubuntu binaries at h…
-
Forked from crtc-demos/newlib-ia16
Fork of IA-16 port of Newlib -- added small and medium model support
543 contributions in the last year
Contribution activity
May 1, 2021
April 2021
Created 60 commits in 6 repositories
Created 3 repositories
Created a pull request in jbruchon/elks that received 24 comments
[kernel] use interrupt-driven I/O when setting keyboard LEDs
Follow-up to the PR #910 .
Opened 4 other pull requests in 3 repositories
davidgiven/ack
2
merged
jbruchon/elks
1
merged
andrewbird/label
1
closed
Created an issue in davidgiven/ack that received 3 comments
Used local functions are inlined, but unused local functions are not removed?
Running
ack -mlinux386 -O6 -c.s test.c
on the code
extern int real_foo(int x, int y); static int foo(int x, int y)
{ return real_foo(x, y);
} int …