remove unused code

This commit is contained in:
Jeff Epler 2023-06-10 15:35:17 -05:00
parent 419565a535
commit 5e84c3ee99

View file

@ -55,11 +55,6 @@ void msc_flush_cb(void) {
msc_changed = true;
}
void _puthex32(uint32_t x) {
_puthex16(x >> 16);
_puthex16(x & 0xffff);
}
#if USE_DISPLAY
uint16_t underCursor = ' ';