00001 #include <drivers/drivers.h> 00002 00004 const driver_t drivers[] = { 00005 {"eight", 00006 driver_eight, driver_eight_alloc, driver_eight_free}, 00007 {"null", 00008 driver_null, driver_null_alloc, driver_null_free}, 00009 {"rosetta", 00010 driver_rosetta, driver_rosetta_alloc, driver_rosetta_free}, 00011 {"square", 00012 driver_square, driver_square_alloc, driver_square_free}, 00013 {"straight", 00014 driver_straight, driver_straight_alloc, driver_straight_free}, 00015 {NULL, NULL, NULL, NULL} 00016 };