DataMuseum.dk

Presents historical artifacts from the history of:

Commodore CBM-900

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about Commodore CBM-900

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - download

⟦e68f176b4⟧ TextFile

    Length: 377 (0x179)
    Types: TextFile
    Notes: UNIX file
    Names: »v0.c«

Derivation

└─⟦f27320a65⟧ Bits:30001972 Commodore 900 hard disk image with partial source code
    └─⟦f4b8d8c84⟧ UNIX V7 Filesystem
        └─ ⟦this⟧ »hrtty/src/v0.c« 

TextFile

/*
 * 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");
}