1
0
mirror of https://github.com/simh/simh.git synced 2026-04-18 00:48:13 +00:00

SCP: Add support for library unit test routines

This commit is contained in:
Mark Pizzolato
2018-08-26 18:15:30 -07:00
parent 8ac1845b30
commit 0daa80e03d
10 changed files with 149 additions and 106 deletions

View File

@@ -88,6 +88,8 @@
sim_tape_show_dens show tape density
sim_tape_set_async enable asynchronous operation
sim_tape_clr_async disable asynchronous operation
aim_tape_test unit test routine
*/
#include "sim_defs.h"
@@ -2747,3 +2749,8 @@ else { /* otherwise get the den
return SCPE_OK;
}
t_stat sim_tape_test (DEVICE *dptr)
{
return SCPE_OK;
}