Browse Source

Fit the adms naming rule.

pre-master-46
dwarning 20 years ago
parent
commit
b6763b9a39
  1. 14
      src/spicelib/devices/dev.c

14
src/spicelib/devices/dev.c

@ -90,8 +90,8 @@ int add_udn(int,Evt_Udn_Info_t **);
#ifdef ADMS #ifdef ADMS
#include "adms/hicum0/hic0_fullitf.h"
#include "adms/mextram/bjt504_vaitf.h"
#include "adms/hicum0/hicum0itf.h"
#include "adms/mextram/mextramitf.h"
#endif #endif
#include "asrc/asrcitf.h" #include "asrc/asrcitf.h"
#include "bjt/bjtitf.h" #include "bjt/bjtitf.h"
@ -282,20 +282,20 @@ spice_init_devices(void)
DEVices[50] = get_numd2_info(); DEVices[50] = get_numd2_info();
DEVices[51] = get_numos_info(); DEVices[51] = get_numos_info();
#ifdef ADMS #ifdef ADMS
DEVices[52] = get_hic0_full_info();
DEVices[53] = get_bjt504_va_info();
DEVices[52] = get_hicum0_info();
DEVices[53] = get_mextram_info();
assert(54 == DEVNUM); assert(54 == DEVNUM);
#else /* NOT ADMS */ #else /* NOT ADMS */
assert(52 == DEVNUM); assert(52 == DEVNUM);
#endif /* ADMS */ #endif /* ADMS */
#else /* NOT CIDER */ #else /* NOT CIDER */
#ifdef ADMS #ifdef ADMS
DEVices[47] = get_hic0_full_info();
DEVices[48] = get_bjt504_va_info();
DEVices[47] = get_hicum0_info();
DEVices[48] = get_mextram_info();
assert(49 == DEVNUM); assert(49 == DEVNUM);
#else /* NOT ADMS */ #else /* NOT ADMS */
assert(47 == DEVNUM); assert(47 == DEVNUM);
#endif
#endif /* ADMS */
#endif /* CIDER */ #endif /* CIDER */
return; return;
} }

Loading…
Cancel
Save