about summary refs log tree commit diff stats
path: root/070display.cc
diff options
context:
space:
mode:
Diffstat (limited to '070display.cc')
-rw-r--r--070display.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/070display.cc b/070display.cc
index 2c52534e..8c02bc57 100644
--- a/070display.cc
+++ b/070display.cc
@@ -49,6 +49,16 @@ case CLEAR_DISPLAY: {
 }
 
 :(before "End Primitive Recipe Declarations")
+SYNC_DISPLAY,
+:(before "End Primitive Recipe Numbers")
+Recipe_ordinal["sync-display"] = SYNC_DISPLAY;
+:(before "End Primitive Recipe Implementations")
+case SYNC_DISPLAY: {
+  tb_sync();
+  break;
+}
+
+:(before "End Primitive Recipe Declarations")
 CLEAR_LINE_ON_DISPLAY,
 :(before "End Primitive Recipe Numbers")
 Recipe_ordinal["clear-line-on-display"] = CLEAR_LINE_ON_DISPLAY;