Skip to content

Commit acbbd88

Browse files
committed
work around JWasm 2.19 flaw by defining RCODE prior to using
1 parent a6d0a0e commit acbbd88

2 files changed

Lines changed: 5 additions & 2 deletions

File tree

drbio/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ bin/clock.obj: clock.asm drmacros.equ ibmros.equ request.equ driver.equ
6565

6666
bin/console.obj: console.asm drmacros.equ ibmros.equ request.equ driver.equ
6767

68-
bin/disk.obj: disk.asm biosgrps.asm drmacros.equ ibmros.equ request.equ bpb.equ udsc.equ driver.equ keys.equ biosmsgs.def
68+
bin/disk.obj: disk.asm drmacros.equ ibmros.equ request.equ bpb.equ udsc.equ driver.equ keys.equ biosmsgs.def
6969

7070
bin/serpar.obj: serpar.asm drmacros.equ ibmros.equ request.equ driver.equ
7171

drbio/init.asm

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,9 @@
5454
ENDCODE segment public byte 'ENDCODE'
5555
ENDCODE ends
5656

57+
RCODE segment public word 'RCODE'
58+
RCODE ends
59+
5760
RESUMECODE segment public byte 'RESUMECODE'
5861
RESUMECODE ends
5962

@@ -1181,7 +1184,7 @@ ifndef ROMSYS
11811184
endif
11821185
RCODE_ALIGN ends
11831186

1184-
RCODE segment public byte 'RCODE'
1187+
RCODE segment
11851188

11861189
rcode_header dw 0
11871190

0 commit comments

Comments
 (0)