From 9b16f190492f26e065f13f19e51c4e2180a21143 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Fri, 15 Feb 2019 17:20:57 -0800 Subject: 4973 Support immediate operands in the data segment in all the ways we support them in the code segment. --- subx/apps/hex.subx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'subx/apps/hex.subx') diff --git a/subx/apps/hex.subx b/subx/apps/hex.subx index d841fd8b..49ca3bd4 100644 --- a/subx/apps/hex.subx +++ b/subx/apps/hex.subx @@ -1511,11 +1511,11 @@ test-skip-until-newline: _test-error-stream: # current write index - 00 00 00 00 + 0/imm32 # current read index - 00 00 00 00 - # length (= 8) - 08 00 00 00 + 0/imm32 + # length + 8/imm32 # data 00 00 00 00 00 00 00 00 # 8 bytes @@ -1524,11 +1524,11 @@ _test-error-buffered-file: # file descriptor or (address stream) _test-error-stream/imm32 # current write index - 00 00 00 00 + 0/imm32 # current read index - 00 00 00 00 - # length (6) - 06 00 00 00 + 0/imm32 + # length + 6/imm32 # data 00 00 00 00 00 00 # 6 bytes -- cgit 1.4.1-2-gfad0