1
0
Fork
You've already forked codegen
0
A simple code generator
  • Go 81.1%
  • Roff 8%
  • Makefile 7%
  • C 2.5%
  • Assembly 1.4%
Florian Limberger 930f127489 Add readme
Add a readme recording some references.
2024年02月25日 14:19:44 +01:00
asm Make makefiles consistent 2024年02月25日 13:57:16 +01:00
c Make makefiles consistent 2024年02月25日 13:57:16 +01:00
elf Initial commit: simple ELF executable for FreeBSD 2024年01月08日 02:02:24 +01:00
syscall Add Linux support 2024年01月08日 14:43:14 +01:00
.gitignore Add C examples 2024年01月08日 21:41:27 +01:00
codegen.1 Add manual page 2024年02月25日 13:59:25 +01:00
cputype_amd64.go Add Linux support 2024年01月08日 14:43:14 +01:00
cputype_arm.go Add Linux support 2024年01月08日 14:43:14 +01:00
go.mod Initial commit: simple ELF executable for FreeBSD 2024年01月08日 02:02:24 +01:00
main.go Add Linux support 2024年01月08日 14:43:14 +01:00
makefile Make makefiles consistent 2024年02月25日 13:57:16 +01:00
notes Initial commit: simple ELF executable for FreeBSD 2024年01月08日 02:02:24 +01:00
readme.md Add readme 2024年02月25日 14:19:44 +01:00
syshost_freebsd.go Add Linux support 2024年01月08日 14:43:14 +01:00
syshost_linux.go Add Linux support 2024年01月08日 14:43:14 +01:00

A simple code generator for ELF-based systems

Codegen is a simple code generator producing ELF files for multiple CPU architectures and operating systems. It is strongly influenced by the Plan 9 operating system and the Go programming language, which not coincidentially share some of their creators.

Usage

Refer to the manual page.

References