mirror of
https://github.com/simh/simh.git
synced 2026-02-05 07:55:37 +00:00
Added support for MTAB entries to have values which contain quoted strings (which can therefore contain spaces and/or other characters which might normally be delimiters. Need suggested by Michael Mondy
This commit is contained in:
@@ -561,7 +561,8 @@ struct sim_mtab {
|
||||
#define MTAB_VALO (0010 | MTAB_XTD) /* takes a value (optional) */
|
||||
#define MTAB_NMO (0020 | MTAB_XTD) /* only if named */
|
||||
#define MTAB_NC (0040 | MTAB_XTD) /* no UC conversion */
|
||||
#define MTAB_SHP (0100 | MTAB_XTD) /* show takes parameter */
|
||||
#define MTAB_QUOTE (0100 | MTAB_XTD) /* quoted string */
|
||||
#define MTAB_SHP (0200 | MTAB_XTD) /* show takes parameter */
|
||||
#define MODMASK(mptr,flag) (((mptr)->mask & (uint32)(flag)) == (uint32)(flag))/* flag mask test */
|
||||
|
||||
/* Search table */
|
||||
|
||||
Reference in New Issue
Block a user