| plan 9 kernel history: overview | file list | diff list |
2000/1031/bitsy/devflash.c (diff list | history)
| bitsy/devflash.c on 2000/1031 | ||
| 2000/1031 | #include "u.h" #include "../port/lib.h" #include "mem.h" #include "dat.h" #include "fns.h" #include "io.h" #include "../port/error.h" /* flash partitions */ typedef struct FlashPart FlashPart; struct FlashPart { QLock; char name[NAMELEN]; ulong start; /* byte offsets */ ulong end; }; | |