mirror of
https://github.com/simh/simh.git
synced 2026-02-09 09:42:43 +00:00
Added Large File Support which was missing for NetBSD (and OpenBSD) hosts - reported by Felix Deichmann
This commit is contained in:
@@ -2718,7 +2718,7 @@ if (cptr) {
|
||||
cap = (uint32) get_uint (cptr, 10, 0xFFFFFFFF, &r);
|
||||
if ((sim_switches & SWMASK ('L')) == 0)
|
||||
cap = cap * 1954;
|
||||
if ((r != SCPE_OK) || (cap < RA8U_MINC) || (cap >= max))
|
||||
if ((r != SCPE_OK) || (cap < RA8U_MINC) || (cap > max))
|
||||
return SCPE_ARG;
|
||||
drv_tab[val].lbn = cap;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user