<
From version < 9.6 >
edited by gjo
on 2023/09/11 16:17
To version < 10.1
edited by Richard Kreissig
on 2023/09/14 11:12
Change comment: There is no comment for this version

Summary

Details

Page properties
Author
... ... @@ -1,1 +1,1 @@
1 -XWiki.gjo
1 +XWiki.stu230980
Content
... ... @@ -322,13 +322,12 @@
322 322  {{/code}}
323 323  )))
324 324  
325 -{{note}}
325 +{{info}}
326 326  SCL file is not realy correct, will be corrected as soon as possible
327 -{{/note}}
327 +{{/info}}
328 328  
329 329  The lines 23 to 66 (testbench file) were generated from the SCL model file. The model tells the transformation which input and output the abo component must have and the type of these variables (signals in VHDL). So the SCl file is needed for code generation.
330 330  
331 -
332 332  
333 333  The simulation process (starts at line 79) is generated using the core ESO file. How the simulation process is generated will be shown at the following example:
334 334  
... ... @@ -379,17 +379,17 @@
379 379  C_value <= false;
380 380  wait for tick_period;
381 381  assert( D = true )
382 - report "1st trace: 1st tick: D should have been true"
383 - severity ERROR;
381 + report "1st trace: 1st tick: D should have been true"
382 + severity ERROR;
384 384  assert( E = false )
385 - report "1st trace: 1st tick: E should have been false"
386 - severity ERROR;
384 + report "1st trace: 1st tick: E should have been false"
385 + severity ERROR;
387 387  assert( F = true )
388 - report "1st trace: 1st tick: F should have been true"
389 - severity ERROR;
387 + report "1st trace: 1st tick: F should have been true"
388 + severity ERROR;
390 390  assert( F_value = false )
391 - report "1st trace: 1st tick: F_value should have been false"
392 - severity ERROR;
390 + report "1st trace: 1st tick: F_value should have been false"
391 + severity ERROR;
393 393  {{/code}}
394 394  )))
395 395  
... ... @@ -412,13 +412,10 @@
412 412  After the tick has passed by we must check if the hardware computes the correct outputs. This is done by assertions. Every (!) output must be tested!
413 413  
414 414  * Pure signals: Test the pure output signal according to the current ESO tick, if listed in the tick, e.g. //assert( D = true )//. If it is not specified in the trace test for absence,
415 -* Valued signals: For valued signals, that are specified in the current ESO tick, test the present singal and the valued signal, e.g.// assert( F = true ) //and// assert( F_value = false)//
414 +* Valued signals: For valued signals, that are specified in the current ESO tick, test the present singal and the valued signal, e.g.// assert( F = true ) //and// assert( F_value = false)//
416 416  * Valued signals, which are not listed in the current tick in the ESO file: test only the present flag for absence (We can say anything about absent valued signals)
417 417  
418 418  If an assertion failed the corresponding error will be printed to a log file. The severity level tells the simulator to go on with the simulation although an error occur.
419 419  
420 -
421 421  
422 -
423 423  
424 -