diff options
Diffstat (limited to 'subx')
-rw-r--r-- | subx/065write-buffered.subx | 18 | ||||
-rw-r--r-- | subx/068error-byte.subx | 18 |
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 |