about summary refs log tree commit diff stats
path: root/subx
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-07-22 00:26:14 -0700
committerKartik Agaram <vc@akkartik.com>2019-07-22 00:26:14 -0700
commite968d7733acbcedcf18209a8438eec83591be6ec (patch)
treec5c5c968019c62baaade5069fdac08dc8f64debe /subx
parent9a7eaeb9fce012fe6ef6e529839d9ca17efe2d2e (diff)
downloadmu-e968d7733acbcedcf18209a8438eec83591be6ec.tar.gz
5440
Fix CI.
Diffstat (limited to 'subx')
-rw-r--r--subx/065write-buffered.subx18
-rw-r--r--subx/068error-byte.subx18
2 files changed, 18 insertions, 18 deletions
diff --git a/subx/065write-buffered.subx b/subx/065write-buffered.subx
index 35f75199..88b14b2d 100644
--- a/subx/065write-buffered.subx
+++ b/subx/065write-buffered.subx
@@ -207,4 +207,22 @@ test-write-buffered-with-intermediate-flush:
     # . end
     c3/return
 
+== data
+
+# The buffered file for standard error.
+Stderr:
+    # file descriptor or (address stream)
+    2/imm32  # standard error
+    # current write index
+    0/imm32
+    # current read index
+    0/imm32
+    # length
+    8/imm32
+    # data
+    00 00 00 00 00 00 00 00  # 8 bytes
+
+# TODO: 8 bytes is too small. We'll need to grow the buffer for efficiency. But
+# I don't want to type in 1024 bytes here.
+
 # . . vim:nowrap:textwidth=0
diff --git a/subx/068error-byte.subx b/subx/068error-byte.subx
index dcffd026..1f225d28 100644
--- a/subx/068error-byte.subx
+++ b/subx/068error-byte.subx
@@ -88,22 +88,4 @@ $error-byte:dead-end:
     5d/pop-to-EBP
     c3/return
 
-== data
-
-# The buffered file for standard error.
-Stderr:
-    # file descriptor or (address stream)
-    2/imm32  # standard error
-    # current write index
-    0/imm32
-    # current read index
-    0/imm32
-    # length
-    8/imm32
-    # data
-    00 00 00 00 00 00 00 00  # 8 bytes
-
-# TODO: 8 bytes is too small. We'll need to grow the buffer for efficiency. But
-# I don't want to type in 1024 bytes here.
-
 # . . vim:nowrap:textwidth=0