about summary refs log tree commit diff stats
path: root/subx/053new-segment.subx
diff options
context:
space:
mode:
Diffstat (limited to 'subx/053new-segment.subx')
-rw-r--r--subx/053new-segment.subx12
1 files changed, 6 insertions, 6 deletions
diff --git a/subx/053new-segment.subx b/subx/053new-segment.subx
index 0aee0539..fd7203b9 100644
--- a/subx/053new-segment.subx
+++ b/subx/053new-segment.subx
@@ -48,16 +48,16 @@ $new-segment:end:
 # various constants used here were found in the Linux sources (search for file mman-common.h)
 _mmap-new-segment:  # type mmap_arg_struct
     # addr
-    00 00 00 00  # null
+    0/imm32
     # len
-    00 00 00 00  # 0x1000
+    0/imm32
     # protection flags
-    03 00 00 00  # PROT_READ | PROT_WRITE
+    3/imm32  # PROT_READ | PROT_WRITE
     # sharing flags
-    22 00 00 00  # MAP_PRIVATE | MAP_ANONYMOUS
+    0x22/imm32  # MAP_PRIVATE | MAP_ANONYMOUS
     # fd
-    ff ff ff ff  # -1 since MAP_ANONYMOUS is specified
+    -1/imm32  # since MAP_ANONYMOUS is specified
     # offset
-    00 00 00 00  # 0 since MAP_ANONYMOUS is specified
+    0/imm32  # since MAP_ANONYMOUS is specified
 
 # . . vim:nowrap:textwidth=0