New loadable to show release
This commit is contained in:
parent
b0b30b86a5
commit
642a71303d
|
@ -0,0 +1,21 @@
|
||||||
|
#include <sysinit.h>
|
||||||
|
#include <string.h>
|
||||||
|
|
||||||
|
#include "basic/basic.h"
|
||||||
|
#include "basic/config.h"
|
||||||
|
|
||||||
|
#include "lcd/render.h"
|
||||||
|
#include "lcd/print.h"
|
||||||
|
|
||||||
|
#include "usetable.h"
|
||||||
|
|
||||||
|
/**************************************************************************/
|
||||||
|
|
||||||
|
void ram(void) {
|
||||||
|
lcdClear();
|
||||||
|
lcdPrintln("r0ket");
|
||||||
|
lcdPrintln("Release: ");
|
||||||
|
lcdPrintln(IntToStrX(getrelease(),8));
|
||||||
|
lcdRefresh();
|
||||||
|
while(!getInputRaw())work_queue();
|
||||||
|
};
|
Loading…
Reference in New Issue