TAPE: export sim_tape_error_text
This commit is contained in:
parent
8f3a2057e1
commit
61c1af846f
2 changed files with 2 additions and 1 deletions
|
@ -86,6 +86,7 @@
|
||||||
sim_tape_show_capac show tape capacity
|
sim_tape_show_capac show tape capacity
|
||||||
sim_tape_set_dens set tape density
|
sim_tape_set_dens set tape density
|
||||||
sim_tape_show_dens show tape density
|
sim_tape_show_dens show tape density
|
||||||
|
sim_tape_error_text the textual description of a tape status
|
||||||
sim_tape_set_async enable asynchronous operation
|
sim_tape_set_async enable asynchronous operation
|
||||||
sim_tape_clr_async disable asynchronous operation
|
sim_tape_clr_async disable asynchronous operation
|
||||||
aim_tape_test unit test routine
|
aim_tape_test unit test routine
|
||||||
|
@ -3442,7 +3443,6 @@ free (recbuf);
|
||||||
return objc;
|
return objc;
|
||||||
}
|
}
|
||||||
|
|
||||||
static
|
|
||||||
const char *sim_tape_error_text (t_stat stat)
|
const char *sim_tape_error_text (t_stat stat)
|
||||||
{
|
{
|
||||||
const char *mtse_errors[] = {
|
const char *mtse_errors[] = {
|
||||||
|
|
|
@ -231,6 +231,7 @@ t_stat sim_tape_show_capac (FILE *st, UNIT *uptr, int32 val, CONST void *desc);
|
||||||
t_stat sim_tape_set_dens (UNIT *uptr, int32 val, CONST char *cptr, void *desc);
|
t_stat sim_tape_set_dens (UNIT *uptr, int32 val, CONST char *cptr, void *desc);
|
||||||
t_stat sim_tape_show_dens (FILE *st, UNIT *uptr, int32 val, CONST void *desc);
|
t_stat sim_tape_show_dens (FILE *st, UNIT *uptr, int32 val, CONST void *desc);
|
||||||
t_stat sim_tape_density_supported (char *string, size_t string_size, int32 valid_bits);
|
t_stat sim_tape_density_supported (char *string, size_t string_size, int32 valid_bits);
|
||||||
|
const char *sim_tape_error_text (t_stat stat);
|
||||||
t_stat sim_tape_set_asynch (UNIT *uptr, int latency);
|
t_stat sim_tape_set_asynch (UNIT *uptr, int latency);
|
||||||
t_stat sim_tape_clr_asynch (UNIT *uptr);
|
t_stat sim_tape_clr_asynch (UNIT *uptr);
|
||||||
t_stat sim_tape_test (DEVICE *dptr, const char *cptr);
|
t_stat sim_tape_test (DEVICE *dptr, const char *cptr);
|
||||||
|
|
Loading…
Add table
Reference in a new issue