From e968d7733acbcedcf18209a8438eec83591be6ec Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Mon, 22 Jul 2019 00:26:14 -0700 Subject: 5440 Fix CI. --- subx/065write-buffered.subx | 18 ++++++++++++++++++ subx/068error-byte.subx | 18 ------------------ 2 files changed, 18 insertions(+), 18 deletions(-) (limited to 'subx') 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 -- cgit 1.4.1-2-gfad0