%-------------------------------------------------% UNIT us; % Keep time in microseconds % START 0; % Start time % STOP 20; % Stop time % INTERVAL 1; % Time between steps % % List of inputs. Order is important % INPUTS alarm_hrs clock_hrs alarm_mins clock_mins alarm_am_pm clock_am_pm; % Outputs are optional, but order is important if % % autochecking of the simulation is desired % OUTPUTS ringer; % The PATTERN statement signifies the start of the test % % vectors. The order of signals is based on the INPUTS % % and OUTPUTS lists above. Only the INPUTS are required. % % One test vector per line % % This example uses relative time patterns since timing % % and propogation delay are not issues % PATTERN % alarm_hrs clock_hrs alarm_mins clock_mins alarm_am_pm clock_am_pm % 6 C 00 00 0 0 6 5 00 00 0 0 6 5 00 3B 0 0 6 6 00 00 0 0 6 6 00 01 0 0 6 6 00 00 0 1 ; % Semi-colon at end of vector list %