Skip to content

Instantly share code, notes, and snippets.

@jmgrosen
Created October 11, 2012 22:25
Show Gist options
  • Select an option

  • Save jmgrosen/3875922 to your computer and use it in GitHub Desktop.

Select an option

Save jmgrosen/3875922 to your computer and use it in GitHub Desktop.
Display C code
#include "display.h"
int main(void) {
while (1) {
for (int i = 0; i < 12; i++) {
puts_mod("Hello world", 0, i, (i + 1) << 12);
}
}
return 5;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment