OpenCores
URL https://opencores.org/ocsvn/pltbutils/pltbutils/trunk

Subversion Repositories pltbutils

[/] [pltbutils/] [trunk/] [doc/] [release_note.txt] - Blame information for rev 107

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 103 pela
pltbutils release_note.txt
2
 
3 107 pela
v1.2 March 11, 2020
4
1. Added waitsig() for unclocked std_logic in pltbutils_func_pkg.vhd .
5
2. Added check_binfile(), check_txtfile(), check_datfile() in
6
   pltbutils_func_pkg.vhd .
7
3. Added str() for converting integer to string with fixed field width
8
   in pltbutils_func_pkg.vhd .
9
4. Added str_equal() for comparing strings in pltbutils_func_pkg.vhd .
10
5. Improved handling of internal (private) procedures
11
   in pltbutils_func_pkg.vhd .
12
6. Added components pltbutils_time_measure and pltbutils_diff_check
13
   in pltbutils_comp.vhd / pltbutils_comp_pkg.vhd
14
7. Minor updates to scripts.
15
8. Updated specification_pltbutils.docx / .pdf
16
 
17 105 pela
v1.1 August 14, 2018
18
1. Corrected handling of skipped tests.
19
   Thanks to Kent Damberg for finding the bug.
20
 
21 103 pela
v1.0 January 26, 2016
22
1. Updated specification_pltbutils.docx / .pdf
23
 
24
beta004 January 3, 2016
25
1. Added skiptest argument to startsim().
26
2. Added function is_test_active().
27
3. Updated examples, testbenches and templates.
28
4. Updated specification_pltbutils.docx / .pdf
29
 
30
beta0003 November 23, 2015
31
1. Added check() for boolean.
32
2. Added check() for boolean against integer.
33
3. Added check() for time.
34
4. Added check() for time with tolerance. Suggested by Stefan Eriksson.
35
5. Updated tb_pltbutils.vhd with tests for the new check() procedures.
36
6. Updated specification_pltbutils.docx / .pdf
37
 
38
Thanks to Stefan Eriksson for suggesting features and providing feedback
39
on documentation.
40
 
41
beta0002 February 2, 2015
42
1. endsim(): renamed argument from force to force_stop for clarity.
43
2. print2(string, string): corrected call, from print() to print2().
44
3. print2(pltbv_t, pltbs_t, string): corrected call, from print() to print2().
45
4. pltbutils_func_pkg.vhd: more comments.
46
5. waitsig(): added overloaded unclocked variant.
47
6. hxstr(): no longer wrapper for hstr, improved with unlimited length of
48
   argument s.
49
7. Updated author's email address in all files where applicable.
50
8: Updated specification_pltbutils.docx/.pdf.
51
 
52
beta0001 April 9, 2014
53
1. Added check() for string.
54
 
55
alpha0007 January 13, 2014
56
1. Renamed example/vhdl/*.* to examples/vhdl/examples2/*.*
57
   This is example code where the testcase process(es) are located
58
   in a testcase component, enabling multiple testcase architectures.
59
   Renamed sim/example_sim/ to sim/modelsim_tb_example2/
60
2. Created examples/vhdl/examples1/
61
   This is example code where the testcase process is located in the
62
   testbench top.
63
   Created sim/modelsim_tb_example1/
64
3. Renamed sim/bench_sim/ to sim/modelsim_tb_pltbutils/
65
4. Renamed template/vhdl/*.* to templates/vhdl/template2/*.*
66
5. Created templates/vhdl/template1/
67
6. Updated specification_pltbutils.docx/pdf to rev 0.5
68
 
69
alpha0006 January 09, 2014
70
1. Replaced shared variables with a normal variable, and global signals with
71
   a normal signal.
72
   VHDL-2000 and later requires that shared variables use protected types,
73
   but protected types weren't available in earlier VHDL versions.
74
   As a consequence, some simulators in VHDL-200x mode require protected
75
   types. But some simulators still don't support protected types at all.
76
   To make pltbutils work in all (or at least in most) VHDL simulators,
77
   shared variables have now been removed.
78
   In previous versions of pltbutils, protected types were used by default.
79
   There were comments in the pltbutils code as an aid to modify the code
80
   for simulators that don't support protected types, but it was too much
81
   work to do the modifications. One possible solution could have been to
82
   make separate variants of pltbutils; one with, and one without protected
83
   types. But that solution was not tempting.
84
2. Removed src/vhdl/pltbutils_type_pkg.vhd .
85
3. Added doc/required_updates.txt .
86
 
87
alpha0005 January 05, 2014
88
1. In pltbutils_func_pkg.vhd, added starttest() and endtest().
89
2. testname() is now depricated, and will be removed. Use starttest() instead.
90
3. Added pltbutils_user_cfg_pkg.vhd and modified pltbutils_func_pkg.vhd to
91
   support user configurable report messages, to support continous
92
   integration environments, e.g. TeamCity.
93
4. Updated specification.
94
 
95
alpha0004 December 3, 2013
96
1. Corrected returned ranges from to_ascending() and to_descending()
97
   in pltbutils_func_pkg.vhd, to make them work with vectors where the lowest
98
   bit does not have number 0.
99
 
100
alpha0003 December 2, 2013
101
1. Added a line feed before printing the test name for clarity,
102
   in procedure testname() in pltbutils.vhd .
103
2. Added functions to_ascending(), to_descending() and hxstr()
104
   in pltbutils.vhd (not yet included in the specification).
105
3. check() in pltbutils.vhd now outputs hexadecimal values instead of
106
   binary values for std_logic_vector, unsigned and signed.
107
4. Updated tb_example.vhd, tc_example.vhd and tc1.vhd to feed
108
   the generic G_DISABLE_BUGS to tc1.
109
   The message "Bug here somewhere" is now only output when
110
   G_DISABLE_BUGS=0.
111
 
112
alpha0002 November 10, 2013
113
1. Added doc/release_note.txt
114
2. Removed file paths from pltbutils_files.lst
115
3. Added overloaded print procedures with boolean argument called active,
116
   which is useful for debug switches, etc.
117
4. Added inverted clock output and a generic for setting initial value to
118
   pltbutils_clkgen in  pltbutils_comp.vhd and pltbutils_comp_pkg.vhd .
119
   The inverted clock output can be used when a differential
120
   clock is needed.
121
5. Added overloaded procedures waitsig().
122
6. Updated specification.
123
 
124
alpha0001 September 2, 2013
125
1. First commit
126
 
127
April 14, 2013
128
1. PlTbUtils project registered on OpenCores.

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.