static void ROC10937_plot(int id, int power) { int cursor; ROC10937_set_outputs(id); for (cursor = 0; cursor < 16; cursor++) { output_set_indexed_value("vfd", (id*16)+cursor, power?ROC10937_get_outputs(id)[cursor]:0x00000); } }
static void ROC10937_plot(int id, int power) { int cursor; ROC10937_set_outputs(id); for (cursor = 0; cursor < 16; cursor++) { output_set_indexed_value("vfd", (id*16)+cursor, power?ROC10937_get_outputs(id)[cursor]:0x00000); if (ROC10937_get_outputs(id)[cursor] & 0x40000) { //activate flashing (unimplemented, just toggle on and off) } else { //deactivate flashing (unimplemented) } } }