Soft reset

This commit is contained in:
Keith Winstein
2011-02-01 02:48:08 -05:00
parent 73af007db4
commit 6265f192ad
3 changed files with 19 additions and 0 deletions
+8
View File
@@ -447,3 +447,11 @@ void Esc_RIS( Framebuffer *fb, Dispatcher *dispatch __attribute((unused)) )
}
static Function func_Esc_RIS( ESCAPE, "c", Esc_RIS );
/* soft reset */
void CSI_DECSTR( Framebuffer *fb, Dispatcher *dispatch __attribute((unused)) )
{
fb->soft_reset();
}
static Function func_CSI_DECSTR( CSI, "!p", CSI_DECSTR );