mirror of
https://github.com/simh/simh.git
synced 2026-04-25 19:51:25 +00:00
TAPE: Make sure that all tape record lengths are properly typed.
- Add Tape Format help options that include recently added format types to MTAB entries.
This commit is contained in:
@@ -57,7 +57,7 @@ typedef uint32 t_mtrlnt; /* magtape rec lnt */
|
||||
#define MTR_MAXLEN 0x00FFFFFF /* max len is 24b */
|
||||
#define MTR_ERF 0x80000000 /* error flag */
|
||||
#define MTR_F(x) ((x) & MTR_ERF) /* record error flg */
|
||||
#define MTR_L(x) ((x) & ~MTR_ERF) /* record length */
|
||||
#define MTR_L(x) ((t_mtrlnt)((x) & ~MTR_ERF)) /* record length */
|
||||
|
||||
/* TPC tape format */
|
||||
|
||||
|
||||
Reference in New Issue
Block a user