Implement hex_set_24

This commit is contained in:
Byron Lathi
2022-03-12 21:55:17 -06:00
parent 226a2972cc
commit 1a9290b97b
2 changed files with 11 additions and 5 deletions

View File

@@ -3,10 +3,8 @@
#include "sevenseg.h"
int main() {
//hex_enable(0xff);
hex_set_8(0xb5, 0);
hex_set_8(0x00, 1);
hex_set_8(0xb0, 2);
hex_enable(0x3f);
hex_set_24(0xabcdef);
while(1);
return 0;
}