From 4b03e1493a4c80c9c4000d2ea4a8917fea8c4066 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Tue, 8 Jun 2021 13:12:01 -0700 Subject: [PATCH] PDP11: Fix typo in cpu_boot routine --- PDP11/pdp11_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PDP11/pdp11_cpu.c b/PDP11/pdp11_cpu.c index 66a31382..2657d86c 100644 --- a/PDP11/pdp11_cpu.c +++ b/PDP11/pdp11_cpu.c @@ -3383,7 +3383,7 @@ DEVICE *rom = find_dev ("ROM"); if ((rom == NULL) || ((rom->flags & DEV_DIS) != 0) || - (SCPE_NOFNC == rom->boot (unitno, rom))); + (SCPE_NOFNC == rom->boot (unitno, rom))) return SCPE_2FARG; return SCPE_OK; }