Skip to content

Commit c8a6f51

Browse files
authored
Merge pull request #9 from eine/encodings
Add package 'Encodings'
2 parents 80100fd + 379c713 commit c8a6f51

File tree

375 files changed

+368
-216
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

375 files changed

+368
-216
lines changed

.github/workflows/test.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: 'test'
2+
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- cron: '0 0 * * 5'
8+
9+
jobs:
10+
11+
test:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v1
15+
- run: ./tests/run.sh ghdl ./Boards2.sh
16+
- run: ./tests/run.sh VUnit python3 run.py -v

.travis.yml

Lines changed: 0 additions & 8 deletions
This file was deleted.

Examples/Boards_VUnit.vhdl

Lines changed: 0 additions & 45 deletions
This file was deleted.

Examples/config.pkg.vhdl

Lines changed: 0 additions & 40 deletions
This file was deleted.
-12 Bytes
Binary file not shown.

JSONTestSuite/test_parsing/i_structure_UTF-8_BOM_empty_object.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

JSONTestSuite/test_parsing/n_structure_UTF8_BOM_no_data.json

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Values can be selected by simple path expressions.
3737
3 Short Example
3838
================================================================================
3939

40-
Here is a short example *.json file, which describes two common FPGA boards.
40+
Here is a short example *.json file, which describes two common FPGA boards.
4141

4242
{ "ML505": {
4343
"FPGA": "XC5VLX50T-1FF1136",
@@ -73,7 +73,7 @@ Load a external *.json file, parse the data structure and select a value:
7373

7474
architecture rtl of Test is
7575
constant ConfigFile : STRING := "Boards.json";
76-
constant JSONContent : T_JSON := jsonLoadFile(ConfigFile);
76+
constant JSONContent : T_JSON := jsonLoad(ConfigFile);
7777
begin
7878
assert (JSONContent.Error(1) = C_JSON_NUL)
7979
report "Error: " & JSONContent.Error

VUnit/run.py

Lines changed: 0 additions & 19 deletions
This file was deleted.

VUnit/run.sh

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)