Files
super6502/sw/main.c
Byron Lathi 9bbfce23e2 Add driver for hex digits
This only includes the method to set the pairs of displays individually.
The functions to write a single 16 or 32 bit value have not been
implemented yet, nor has the mask function.
2022-03-12 21:26:19 -06:00

13 lines
183 B
C

#include <stdint.h>
#include "sevenseg.h"
int main() {
//hex_enable(0xff);
hex_set_8(0xb5, 0);
hex_set_8(0x00, 1);
hex_set_8(0xb0, 2);
while(1);
return 0;
}