|
DataMuseum.dkPresents historical artifacts from the history of: Commodore CBM-900 |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Commodore CBM-900 Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - download
Length: 377 (0x179) Types: TextFile Notes: UNIX file Names: »v0.c«
└─⟦f27320a65⟧ Bits:30001972 Commodore 900 hard disk image with partial source code └─⟦f4b8d8c84⟧ UNIX Filesystem └─⟦this⟧ »hrtty/src/v0.c«
/* * Fake video driver to define the * entry points. */ v0in(c) int c; { printf("char %x '%c'\n", c, c); } v0load() { printf("v0 load\n"); } v0uload() { printf("v0 unload\n"); } v0open() { printf("v0 open\n"); } v0close() { printf("v0 close\n"); } v0read() { printf("v0 read\n"); } v0write() { printf("v0 write\n"); } v0ioctl(dev, com, p) { printf("v0 ioctl\n"); }