aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/vests/vhdl-93/billowitch/compliant/tc82.vhd
blob: 1a997e819e7f0b25c7757048d35c448d907bf3ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
-- Copyright (C) 2001 Bill Billowitch.

-- Some of the work to develop this test suite was done with Air Force
-- support.  The Air Force and Bill Billowitch assume no
-- responsibilities for this software.

-- This file is part of VESTs (Vhdl tESTs).

-- VESTs is free software; you can redistribute it and/or modify it
-- under the terms of the GNU General Public License as published by the
-- Free Software Foundation; either version 2 of the License, or (at
-- your option) any later version. 

-- VESTs is distributed in the hope that it will be useful, but WITHOUT
-- ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
-- FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-- for more details. 

-- You should have received a copy of the GNU General Public License
-- along with VESTs; if not, write to the Free Software Foundation,
-- Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA 

-- ---------------------------------------------------------------------
--
-- $Id: tc82.vhd,v 1.2 2001-10-26 16:30:00 paw Exp $
-- $Revision: 1.2 $
--
-- ---------------------------------------------------------------------

ENTITY c04s03b01x03p01n01i00082ent IS
END c04s03b01x03p01n01i00082ent;

ARCHITECTURE c04s03b01x03p01n01i00082arch OF c04s03b01x03p01n01i00082ent IS
--
--
--          Declaration of composite types
--           - array types and subtypes
--
  TYPE    ut_chary    IS ARRAY (CHARACTER RANGE <>) OF INTEGER;      -- unconstrained array type    
  TYPE    ct_word     IS ARRAY (0 TO 15)            OF BIT;          -- constrained array type

  SUBTYPE ust_subchary IS ut_chary;                                  -- unconstrained array subtype
  SUBTYPE cst_str10    IS STRING    ( 1  TO 10 );                    -- constrained array subtype
  SUBTYPE cst_digit    IS ut_chary  ('0' TO '9');                    -- constrained array subtype
--
--          Declaration of composite types
--           - records types and subtypes
--
  TYPE month_name IS (Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec );
  TYPE rt_date IS
    RECORD
      day   : INTEGER RANGE 0 TO 31;
      month : month_name;
      year  : INTEGER RANGE 0 TO 4000;
    END RECORD;
--
  SUBTYPE rst_date IS rt_date;
  
BEGIN
  TESTING: PROCESS
--
--          VARIABLE declarations
--
    
    VARIABLE     STRING_con_0 :     STRING (1 TO 7);
    VARIABLE     STRING_con_1 :     STRING (1 TO 7) := "sailing";
    VARIABLE     STRING_con_2 :     STRING (1 TO 7) := ( 's', 'a', 'i', 'l', 'i', 'n', 'g');
    
    VARIABLE BIT_VECTOR_con_0 : BIT_VECTOR (0 TO 7);
    VARIABLE BIT_VECTOR_con_1 : BIT_VECTOR (0 TO 7) := B"10101110";
    VARIABLE BIT_VECTOR_con_2 : BIT_VECTOR (0 TO 7) := ( '1', '0', '1', '0', '1', '1', '1', '0');
    
    VARIABLE   ut_chary_con_0 :   ut_chary (NUL TO ENQ);
    VARIABLE   ut_chary_con_1 :   ut_chary (NUL TO ENQ) := ( 1, 2, 3, 9, 8, 7);
    
    VARIABLE    ct_word_con_0 :    ct_word;
    VARIABLE    ct_word_con_1 :    ct_word := ( '1', '1', '1', '1', '1', '1', '1', '1',
                                                '1', '1', '1', '1', '1', '1', '1', '1');
    
    VARIABLE  cst_str10_con_0 :  cst_str10;
    VARIABLE  cst_str10_con_1 :  cst_str10 := "abcdefghij";
    VARIABLE  cst_str10_con_2 :  cst_str10 := ( 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j'); 
    VARIABLE  cst_digit_con_0 :  cst_digit;
    VARIABLE  cst_digit_con_1 :  cst_digit := ( 0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
    
    VARIABLE    rt_date_con_0 :    rt_date;
    VARIABLE    rt_date_con_1 :    rt_date := (1, Jan, 1989);
    
    VARIABLE   rst_date_con_0 :   rst_date;
    VARIABLE   rst_date_con_1 :   rst_date := (1, Apr, 2000);
    
----------------------------------------------------------------------------------------------------------
  BEGIN
    ASSERT STRING_con_0(1) = NUL REPORT "STRING_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_0(2) = NUL REPORT "STRING_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_0(3) = NUL REPORT "STRING_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_0(4) = NUL REPORT "STRING_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_0(5) = NUL REPORT "STRING_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_0(6) = NUL REPORT "STRING_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_0(7) = NUL REPORT "STRING_con_0 not properly intialized" SEVERITY FAILURE;
    
    ASSERT STRING_con_1(1) = 's' REPORT "STRING_con_1(1) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_1(2) = 'a' REPORT "STRING_con_1(2) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_1(3) = 'i' REPORT "STRING_con_1(3) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_1(4) = 'l' REPORT "STRING_con_1(4) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_1(5) = 'i' REPORT "STRING_con_1(5) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_1(6) = 'n' REPORT "STRING_con_1(6) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_1(7) = 'g' REPORT "STRING_con_1(7) not properly intialized" SEVERITY FAILURE;
    
    ASSERT STRING_con_2(1) = 's' REPORT "STRING_con_2(1) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_2(2) = 'a' REPORT "STRING_con_2(2) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_2(3) = 'i' REPORT "STRING_con_2(3) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_2(4) = 'l' REPORT "STRING_con_2(4) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_2(5) = 'i' REPORT "STRING_con_2(5) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_2(6) = 'n' REPORT "STRING_con_2(6) not properly intialized" SEVERITY FAILURE;
    ASSERT STRING_con_2(7) = 'g' REPORT "STRING_con_2(7) not properly intialized" SEVERITY FAILURE;
    
    ASSERT BIT_VECTOR_con_0(0) = '0' REPORT "BIT_VECTOR_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_0(1) = '0' REPORT "BIT_VECTOR_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_0(2) = '0' REPORT "BIT_VECTOR_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_0(3) = '0' REPORT "BIT_VECTOR_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_0(4) = '0' REPORT "BIT_VECTOR_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_0(5) = '0' REPORT "BIT_VECTOR_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_0(6) = '0' REPORT "BIT_VECTOR_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_0(7) = '0' REPORT "BIT_VECTOR_con_0 not properly intialized" SEVERITY FAILURE;
    
    ASSERT BIT_VECTOR_con_1(0) = '1' REPORT "BIT_VECTOR_con_1(1) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_1(1) = '0' REPORT "BIT_VECTOR_con_1(2) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_1(2) = '1' REPORT "BIT_VECTOR_con_1(3) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_1(3) = '0' REPORT "BIT_VECTOR_con_1(4) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_1(4) = '1' REPORT "BIT_VECTOR_con_1(5) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_1(5) = '1' REPORT "BIT_VECTOR_con_1(6) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_1(6) = '1' REPORT "BIT_VECTOR_con_1(7) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_1(7) = '0' REPORT "BIT_VECTOR_con_1(8) not properly intialized" SEVERITY FAILURE;

    ASSERT BIT_VECTOR_con_2(0) = '1' REPORT "BIT_VECTOR_con_2(1) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_2(1) = '0' REPORT "BIT_VECTOR_con_2(2) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_2(2) = '1' REPORT "BIT_VECTOR_con_2(3) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_2(3) = '0' REPORT "BIT_VECTOR_con_2(4) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_2(4) = '1' REPORT "BIT_VECTOR_con_2(5) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_2(5) = '1' REPORT "BIT_VECTOR_con_2(6) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_2(6) = '1' REPORT "BIT_VECTOR_con_2(7) not properly intialized" SEVERITY FAILURE;
    ASSERT BIT_VECTOR_con_2(7) = '0' REPORT "BIT_VECTOR_con_2(8) not properly intialized" SEVERITY FAILURE;
    
    ASSERT ut_chary_con_0(NUL) = INTEGER'LEFT REPORT "ut_chary_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ut_chary_con_0(SOH) = INTEGER'LEFT REPORT "ut_chary_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ut_chary_con_0(STX) = INTEGER'LEFT REPORT "ut_chary_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ut_chary_con_0(ETX) = INTEGER'LEFT REPORT "ut_chary_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ut_chary_con_0(EOT) = INTEGER'LEFT REPORT "ut_chary_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ut_chary_con_0(ENQ) = INTEGER'LEFT REPORT "ut_chary_con_0 not properly intialized" SEVERITY FAILURE;
    
    ASSERT ut_chary_con_1(NUL) = 1 REPORT "ut_chary_con_1('a') not properly intialized" SEVERITY FAILURE;
    ASSERT ut_chary_con_1(SOH) = 2 REPORT "ut_chary_con_1('b') not properly intialized" SEVERITY FAILURE;
    ASSERT ut_chary_con_1(STX) = 3 REPORT "ut_chary_con_1('c') not properly intialized" SEVERITY FAILURE;
    ASSERT ut_chary_con_1(ETX) = 9 REPORT "ut_chary_con_1('d') not properly intialized" SEVERITY FAILURE;
    ASSERT ut_chary_con_1(EOT) = 8 REPORT "ut_chary_con_1('e') not properly intialized" SEVERITY FAILURE;
    ASSERT ut_chary_con_1(ENQ) = 7 REPORT "ut_chary_con_1('f') not properly intialized" SEVERITY FAILURE;
    
    ASSERT ct_word_con_0(0) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(1) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(2) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(3) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(4) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(5) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(6) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(7) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(8) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(9) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(10) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(11) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(12) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(13) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(14) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_0(15) = '0' REPORT "ct_word_con_0 not properly intialized" SEVERITY FAILURE;
    
    ASSERT ct_word_con_1(0) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(1) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(2) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(3) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(4) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(5) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(6) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(7) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(8) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(9) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(10) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(11) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(12) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(13) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(14) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    ASSERT ct_word_con_1(15) = '1' REPORT "ct_word_con_1 not properly intialized" SEVERITY FAILURE;
    
    ASSERT cst_str10_con_0(1) = NUL REPORT "cst_str10_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_0(2) = NUL REPORT "cst_str10_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_0(3) = NUL REPORT "cst_str10_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_0(4) = NUL REPORT "cst_str10_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_0(5) = NUL REPORT "cst_str10_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_0(6) = NUL REPORT "cst_str10_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_0(7) = NUL REPORT "cst_str10_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_0(8) = NUL REPORT "cst_str10_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_0(9) = NUL REPORT "cst_str10_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_0(10) = NUL REPORT "cst_str10_con_0 not properly intialized" SEVERITY FAILURE;

    ASSERT cst_str10_con_1(1) = 'a' REPORT "cst_str10_con_1(1) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_1(2) = 'b' REPORT "cst_str10_con_1(2) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_1(3) = 'c' REPORT "cst_str10_con_1(3) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_1(4) = 'd' REPORT "cst_str10_con_1(4) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_1(5) = 'e' REPORT "cst_str10_con_1(5) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_1(6) = 'f' REPORT "cst_str10_con_1(6) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_1(7) = 'g' REPORT "cst_str10_con_1(7) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_1(8) = 'h' REPORT "cst_str10_con_1(8) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_1(9) = 'i' REPORT "cst_str10_con_1(9) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_1(10)= 'j' REPORT "cst_str10_con_1(10)not properly intialized" SEVERITY FAILURE;
    
    ASSERT cst_str10_con_2(1) = 'a' REPORT "cst_str10_con_2(1) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_2(2) = 'b' REPORT "cst_str10_con_2(2) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_2(3) = 'c' REPORT "cst_str10_con_2(3) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_2(4) = 'd' REPORT "cst_str10_con_2(4) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_2(5) = 'e' REPORT "cst_str10_con_2(5) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_2(6) = 'f' REPORT "cst_str10_con_2(6) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_2(7) = 'g' REPORT "cst_str10_con_2(7) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_2(8) = 'h' REPORT "cst_str10_con_2(8) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_2(9) = 'i' REPORT "cst_str10_con_2(9) not properly intialized" SEVERITY FAILURE;
    ASSERT cst_str10_con_2(10)= 'j' REPORT "cst_str10_con_2(10)not properly intialized" SEVERITY FAILURE;

    ASSERT cst_digit_con_0('0') = INTEGER'LEFT REPORT "cst_digit_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_0('1') = INTEGER'LEFT REPORT "cst_digit_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_0('2') = INTEGER'LEFT REPORT "cst_digit_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_0('3') = INTEGER'LEFT REPORT "cst_digit_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_0('4') = INTEGER'LEFT REPORT "cst_digit_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_0('5') = INTEGER'LEFT REPORT "cst_digit_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_0('6') = INTEGER'LEFT REPORT "cst_digit_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_0('7') = INTEGER'LEFT REPORT "cst_digit_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_0('8') = INTEGER'LEFT REPORT "cst_digit_con_0 not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_0('9') = INTEGER'LEFT REPORT "cst_digit_con_0 not properly intialized" SEVERITY FAILURE;
    
    ASSERT cst_digit_con_1('0') = 0 REPORT "cst_digit_con_1('0') not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_1('1') = 1 REPORT "cst_digit_con_1('1') not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_1('2') = 2 REPORT "cst_digit_con_1('2') not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_1('3') = 3 REPORT "cst_digit_con_1('3') not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_1('4') = 4 REPORT "cst_digit_con_1('4') not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_1('5') = 5 REPORT "cst_digit_con_1('5') not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_1('6') = 6 REPORT "cst_digit_con_1('6') not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_1('7') = 7 REPORT "cst_digit_con_1('7') not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_1('8') = 8 REPORT "cst_digit_con_1('8') not properly intialized" SEVERITY FAILURE;
    ASSERT cst_digit_con_1('9') = 9 REPORT "cst_digit_con_1('9') not properly intialized" SEVERITY FAILURE;
    
    ASSERT  rt_date_con_0.day   = 0    REPORT " rt_date_con_0.day   not properly intialized" SEVERITY FAILURE;
    ASSERT  rt_date_con_0.month = Jan  REPORT " rt_date_con_0.month not properly intialized" SEVERITY FAILURE;
    ASSERT  rt_date_con_0.year  = 0    REPORT " rt_date_con_0.year  not properly intialized" SEVERITY FAILURE;
    
    ASSERT  rt_date_con_1.day   = 1    REPORT " rt_date_con_1.day   not properly intialized" SEVERITY FAILURE;
    ASSERT  rt_date_con_1.month = Jan  REPORT " rt_date_con_1.month not properly intialized" SEVERITY FAILURE;
    ASSERT  rt_date_con_1.year  = 1989 REPORT " rt_date_con_1.year  not properly intialized" SEVERITY FAILURE;
    
    ASSERT rst_date_con_0.day   = 0    REPORT "rst_date_con_0.day   not properly intialized" SEVERITY FAILURE;
    ASSERT rst_date_con_0.month = Jan  REPORT "rst_date_con_0.month not properly intialized" SEVERITY FAILURE;
    ASSERT rst_date_con_0.year  = 0    REPORT "rst_date_con_0.year  not properly intialized" SEVERITY FAILURE;
    
    ASSERT rst_date_con_1.day   = 1    REPORT "rst_date_con_1.day   not properly intialized" SEVERITY FAILURE;
    ASSERT rst_date_con_1.month = Apr  REPORT "rst_date_con_1.month not properly intialized" SEVERITY FAILURE;
    ASSERT rst_date_con_1.year  = 2000 REPORT "rst_date_con_1.year  not properly intialized" SEVERITY FAILURE;

--------------------------------------------------------------------------------------------------------------

    assert NOT(    STRING_con_0(1) = NUL      and 
                   STRING_con_0(2) = NUL       and
                   STRING_con_0(3) = NUL       and
                   STRING_con_0(4) = NUL       and
                   STRING_con_0(5) = NUL       and
                   STRING_con_0(6) = NUL       and
                   STRING_con_0(7) = NUL       and
                   STRING_con_1(1) = 's'       and
                   STRING_con_1(2) = 'a'       and
                   STRING_con_1(3) = 'i'       and
                   STRING_con_1(4) = 'l'       and
                   STRING_con_1(5) = 'i'       and
                   STRING_con_1(6) = 'n'       and
                   STRING_con_1(7) = 'g'       and
                   STRING_con_2(1) = 's'       and
                   STRING_con_2(2) = 'a'       and
                   STRING_con_2(3) = 'i'       and
                   STRING_con_2(4) = 'l'       and
                   STRING_con_2(5) = 'i'       and
                   STRING_con_2(6) = 'n'       and
                   STRING_con_2(7) = 'g'       and
                   BIT_VECTOR_con_0(0) = '0'    and
                   BIT_VECTOR_con_0(1) = '0'    and
                   BIT_VECTOR_con_0(2) = '0'    and
                   BIT_VECTOR_con_0(3) = '0'    and
                   BIT_VECTOR_con_0(4) = '0'    and
                   BIT_VECTOR_con_0(5) = '0'    and
                   BIT_VECTOR_con_0(6) = '0'    and
                   BIT_VECTOR_con_0(7) = '0'    and
                   BIT_VECTOR_con_1(0) = '1'    and
                   BIT_VECTOR_con_1(1) = '0'    and
                   BIT_VECTOR_con_1(2) = '1'    and
                   BIT_VECTOR_con_1(3) = '0'    and
                   BIT_VECTOR_con_1(4) = '1'    and
                   BIT_VECTOR_con_1(5) = '1'    and
                   BIT_VECTOR_con_1(6) = '1'    and
                   BIT_VECTOR_con_1(7) = '0'    and
                   BIT_VECTOR_con_2(0) = '1'    and
                   BIT_VECTOR_con_2(1) = '0'    and
                   BIT_VECTOR_con_2(2) = '1'    and
                   BIT_VECTOR_con_2(3) = '0'    and
                   BIT_VECTOR_con_2(4) = '1'    and
                   BIT_VECTOR_con_2(5) = '1'    and
                   BIT_VECTOR_con_2(6) = '1'    and
                   BIT_VECTOR_con_2(7) = '0'    and
                   ut_chary_con_0(NUL) = INTEGER'LEFT    and
                   ut_chary_con_0(SOH) = INTEGER'LEFT    and
                   ut_chary_con_0(STX) = INTEGER'LEFT    and
                   ut_chary_con_0(ETX) = INTEGER'LEFT    and
                   ut_chary_con_0(EOT) = INTEGER'LEFT    and
                   ut_chary_con_0(ENQ) = INTEGER'LEFT    and
                   ut_chary_con_1(NUL) = 1    and
                   ut_chary_con_1(SOH) = 2    and
                   ut_chary_con_1(STX) = 3    and
                   ut_chary_con_1(ETX) = 9    and
                   ut_chary_con_1(EOT) = 8    and
                   ut_chary_con_1(ENQ) = 7    and
                   ct_word_con_0(0) = '0'       and
                   ct_word_con_0(1) = '0'       and
                   ct_word_con_0(2) = '0'       and
                   ct_word_con_0(3) = '0'       and
                   ct_word_con_0(4) = '0'       and
                   ct_word_con_0(5) = '0'       and
                   ct_word_con_0(6) = '0'       and
                   ct_word_con_0(7) = '0'       and
                   ct_word_con_0(8) = '0'       and
                   ct_word_con_0(9) = '0'       and
                   ct_word_con_0(10) = '0'    and
                   ct_word_con_0(11) = '0'    and
                   ct_word_con_0(12) = '0'    and
                   ct_word_con_0(13) = '0'    and
                   ct_word_con_0(14) = '0'    and
                   ct_word_con_0(15) = '0'    and
                   ct_word_con_1(0) = '1'       and
                   ct_word_con_1(1) = '1'       and
                   ct_word_con_1(2) = '1'       and
                   ct_word_con_1(3) = '1'       and
                   ct_word_con_1(4) = '1'       and
                   ct_word_con_1(5) = '1'       and
                   ct_word_con_1(6) = '1'       and
                   ct_word_con_1(7) = '1'       and
                   ct_word_con_1(8) = '1'       and
                   ct_word_con_1(9) = '1'       and
                   ct_word_con_1(10) = '1'    and
                   ct_word_con_1(11) = '1'    and
                   ct_word_con_1(12) = '1'    and
                   ct_word_con_1(13) = '1'    and
                   ct_word_con_1(14) = '1'    and
                   ct_word_con_1(15) = '1'    and
                   cst_str10_con_0(1) = NUL    and
                   cst_str10_con_0(2) = NUL    and
                   cst_str10_con_0(3) = NUL    and
                   cst_str10_con_0(4) = NUL    and
                   cst_str10_con_0(5) = NUL    and
                   cst_str10_con_0(6) = NUL    and
                   cst_str10_con_0(7) = NUL    and
                   cst_str10_con_0(8) = NUL    and
                   cst_str10_con_0(9) = NUL    and
                   cst_str10_con_0(10) = NUL    and
                   cst_str10_con_1(1) = 'a'    and
                   cst_str10_con_1(2) = 'b'    and
                   cst_str10_con_1(3) = 'c'    and
                   cst_str10_con_1(4) = 'd'    and
                   cst_str10_con_1(5) = 'e'    and
                   cst_str10_con_1(6) = 'f'    and
                   cst_str10_con_1(7) = 'g'    and
                   cst_str10_con_1(8) = 'h'    and
                   cst_str10_con_1(9) = 'i'    and
                   cst_str10_con_1(10)= 'j'    and
                   cst_str10_con_2(1) = 'a'    and
                   cst_str10_con_2(2) = 'b'    and
                   cst_str10_con_2(3) = 'c'    and
                   cst_str10_con_2(4) = 'd'    and
                   cst_str10_con_2(5) = 'e'    and
                   cst_str10_con_2(6) = 'f'    and
                   cst_str10_con_2(7) = 'g'    and
                   cst_str10_con_2(8) = 'h'    and
                   cst_str10_con_2(9) = 'i'    and
                   cst_str10_con_2(10)= 'j'    and
                   cst_digit_con_0('0') = INTEGER'LEFT    and
                   cst_digit_con_0('1') = INTEGER'LEFT    and
                   cst_digit_con_0('2') = INTEGER'LEFT    and
                   cst_digit_con_0('3') = INTEGER'LEFT    and
                   cst_digit_con_0('4') = INTEGER'LEFT    and
                   cst_digit_con_0('5') = INTEGER'LEFT    and
                   cst_digit_con_0('6') = INTEGER'LEFT    and
                   cst_digit_con_0('7') = INTEGER'LEFT    and
                   cst_digit_con_0('8') = INTEGER'LEFT    and
                   cst_digit_con_0('9') = INTEGER'LEFT    and
                   cst_digit_con_1('0') = 0    and
                   cst_digit_con_1('1') = 1    and
                   cst_digit_con_1('2') = 2    and
                   cst_digit_con_1('3') = 3    and
                   cst_digit_con_1('4') = 4    and
                   cst_digit_con_1('5') = 5    and
                   cst_digit_con_1('6') = 6    and
                   cst_digit_con_1('7') = 7    and
                   cst_digit_con_1('8') = 8    and
                   cst_digit_con_1('9') = 9    and
                   rt_date_con_0.day   = 0       and
                   rt_date_con_0.month = Jan     and
                   rt_date_con_0.year  = 0       and
                   rt_date_con_1.day   = 1       and
                   rt_date_con_1.month = Jan     and
                   rt_date_con_1.year  = 1989    and
                   rst_date_con_0.day   = 0       and
                   rst_date_con_0.month = Jan     and
                   rst_date_con_0.year  = 0       and
                   rst_date_con_1.day   = 1       and
                   rst_date_con_1.month = Apr     and
                   rst_date_con_1.year  = 2000    )   
      report "***PASSED TEST: /src/ch04/sc03/sb01/ss03/p001/s010101.vhd"
      severity NOTE;
    assert (       STRING_con_0(1) = NUL      and 
                   STRING_con_0(2) = NUL       and
                   STRING_con_0(3) = NUL       and
                   STRING_con_0(4) = NUL       and
                   STRING_con_0(5) = NUL       and
                   STRING_con_0(6) = NUL       and
                   STRING_con_0(7) = NUL       and
                   STRING_con_1(1) = 's'       and
                   STRING_con_1(2) = 'a'       and
                   STRING_con_1(3) = 'i'       and
                   STRING_con_1(4) = 'l'       and
                   STRING_con_1(5) = 'i'       and
                   STRING_con_1(6) = 'n'       and
                   STRING_con_1(7) = 'g'       and
                   STRING_con_2(1) = 's'       and
                   STRING_con_2(2) = 'a'       and
                   STRING_con_2(3) = 'i'       and
                   STRING_con_2(4) = 'l'       and
                   STRING_con_2(5) = 'i'       and
                   STRING_con_2(6) = 'n'       and
                   STRING_con_2(7) = 'g'       and
                   BIT_VECTOR_con_0(0) = '0'    and
                   BIT_VECTOR_con_0(1) = '0'    and
                   BIT_VECTOR_con_0(2) = '0'    and
                   BIT_VECTOR_con_0(3) = '0'    and
                   BIT_VECTOR_con_0(4) = '0'    and
                   BIT_VECTOR_con_0(5) = '0'    and
                   BIT_VECTOR_con_0(6) = '0'    and
                   BIT_VECTOR_con_0(7) = '0'    and
                   BIT_VECTOR_con_1(0) = '1'    and
                   BIT_VECTOR_con_1(1) = '0'    and
                   BIT_VECTOR_con_1(2) = '1'    and
                   BIT_VECTOR_con_1(3) = '0'    and
                   BIT_VECTOR_con_1(4) = '1'    and
                   BIT_VECTOR_con_1(5) = '1'    and
                   BIT_VECTOR_con_1(6) = '1'    and
                   BIT_VECTOR_con_1(7) = '0'    and
                   BIT_VECTOR_con_2(0) = '1'    and
                   BIT_VECTOR_con_2(1) = '0'    and
                   BIT_VECTOR_con_2(2) = '1'    and
                   BIT_VECTOR_con_2(3) = '0'    and
                   BIT_VECTOR_con_2(4) = '1'    and
                   BIT_VECTOR_con_2(5) = '1'    and
                   BIT_VECTOR_con_2(6) = '1'    and
                   BIT_VECTOR_con_2(7) = '0'    and
                   ut_chary_con_0(NUL) = INTEGER'LEFT    and
                   ut_chary_con_0(SOH) = INTEGER'LEFT    and
                   ut_chary_con_0(STX) = INTEGER'LEFT    and
                   ut_chary_con_0(ETX) = INTEGER'LEFT    and
                   ut_chary_con_0(EOT) = INTEGER'LEFT    and
                   ut_chary_con_0(ENQ) = INTEGER'LEFT    and
                   ut_chary_con_1(NUL) = 1    and
                   ut_chary_con_1(SOH) = 2    and
                   ut_chary_con_1(STX) = 3    and
                   ut_chary_con_1(ETX) = 9    and
                   ut_chary_con_1(EOT) = 8    and
                   ut_chary_con_1(ENQ) = 7    and
                   ct_word_con_0(0) = '0'       and
                   ct_word_con_0(1) = '0'       and
                   ct_word_con_0(2) = '0'       and
                   ct_word_con_0(3) = '0'       and
                   ct_word_con_0(4) = '0'       and
                   ct_word_con_0(5) = '0'       and
                   ct_word_con_0(6) = '0'       and
                   ct_word_con_0(7) = '0'       and
                   ct_word_con_0(8) = '0'       and
                   ct_word_con_0(9) = '0'       and
                   ct_word_con_0(10) = '0'    and
                   ct_word_con_0(11) = '0'    and
                   ct_word_con_0(12) = '0'    and
                   ct_word_con_0(13) = '0'    and
                   ct_word_con_0(14) = '0'    and
                   ct_word_con_0(15) = '0'    and
                   ct_word_con_1(0) = '1'       and
                   ct_word_con_1(1) = '1'       and
                   ct_word_con_1(2) = '1'       and
                   ct_word_con_1(3) = '1'       and
                   ct_word_con_1(4) = '1'       and
                   ct_word_con_1(5) = '1'       and
                   ct_word_con_1(6) = '1'       and
                   ct_word_con_1(7) = '1'       and
                   ct_word_con_1(8) = '1'       and
                   ct_word_con_1(9) = '1'       and
                   ct_word_con_1(10) = '1'    and
                   ct_word_con_1(11) = '1'    and
                   ct_word_con_1(12) = '1'    and
                   ct_word_con_1(13) = '1'    and
                   ct_word_con_1(14) = '1'    and
                   ct_word_con_1(15) = '1'    and
                   cst_str10_con_0(1) = NUL    and
                   cst_str10_con_0(2) = NUL    and
                   cst_str10_con_0(3) = NUL    and
                   cst_str10_con_0(4) = NUL    and
                   cst_str10_con_0(5) = NUL    and
                   cst_str10_con_0(6) = NUL    and
                   cst_str10_con_0(7) = NUL    and
                   cst_str10_con_0(8) = NUL    and
                   cst_str10_con_0(9) = NUL    and
                   cst_str10_con_0(10) = NUL    and
                   cst_str10_con_1(1) = 'a'    and
                   cst_str10_con_1(2) = 'b'    and
                   cst_str10_con_1(3) = 'c'    and
                   cst_str10_con_1(4) = 'd'    and
                   cst_str10_con_1(5) = 'e'    and
                   cst_str10_con_1(6) = 'f'    and
                   cst_str10_con_1(7) = 'g'    and
                   cst_str10_con_1(8) = 'h'    and
                   cst_str10_con_1(9) = 'i'    and
                   cst_str10_con_1(10)= 'j'    and
                   cst_str10_con_2(1) = 'a'    and
                   cst_str10_con_2(2) = 'b'    and
                   cst_str10_con_2(3) = 'c'    and
                   cst_str10_con_2(4) = 'd'    and
                   cst_str10_con_2(5) = 'e'    and
                   cst_str10_con_2(6) = 'f'    and
                   cst_str10_con_2(7) = 'g'    and
                   cst_str10_con_2(8) = 'h'    and
                   cst_str10_con_2(9) = 'i'    and
                   cst_str10_con_2(10)= 'j'    and
                   cst_digit_con_0('0') = INTEGER'LEFT    and
                   cst_digit_con_0('1') = INTEGER'LEFT    and
                   cst_digit_con_0('2') = INTEGER'LEFT    and
                   cst_digit_con_0('3') = INTEGER'LEFT    and
                   cst_digit_con_0('4') = INTEGER'LEFT    and
                   cst_digit_con_0('5') = INTEGER'LEFT    and
                   cst_digit_con_0('6') = INTEGER'LEFT    and
                   cst_digit_con_0('7') = INTEGER'LEFT    and
                   cst_digit_con_0('8') = INTEGER'LEFT    and
                   cst_digit_con_0('9') = INTEGER'LEFT    and
                   cst_digit_con_1('0') = 0    and
                   cst_digit_con_1('1') = 1    and
                   cst_digit_con_1('2') = 2    and
                   cst_digit_con_1('3') = 3    and
                   cst_digit_con_1('4') = 4    and
                   cst_digit_con_1('5') = 5    and
                   cst_digit_con_1('6') = 6    and
                   cst_digit_con_1('7') = 7    and
                   cst_digit_con_1('8') = 8    and
                   cst_digit_con_1('9') = 9    and
                   rt_date_con_0.day   = 0       and
                   rt_date_con_0.month = Jan     and
                   rt_date_con_0.year  = 0       and
                   rt_date_con_1.day   = 1       and
                   rt_date_con_1.month = Jan     and
                   rt_date_con_1.year  = 1989    and
                   rst_date_con_0.day   = 0       and
                   rst_date_con_0.month = Jan     and
                   rst_date_con_0.year  = 0       and
                   rst_date_con_1.day   = 1       and
                   rst_date_con_1.month = Apr     and
                   rst_date_con_1.year  = 2000    )   
      report "***FAILED TEST: c04s03b01x03p01n01i00082 - A variable declaration declares a variable of the specified type."
      severity ERROR;
    wait;
  END PROCESS TESTING;

END c04s03b01x03p01n01i00082arch;