Skip to content

Commit 44feaf6

Browse files
Replacing the special tick character (#168)
* Replacing the special tick character The use of a special tick character in schema_isa.yaml cause the riscof validateyaml command to fail in some environments. This has been reported in the following issues. riscv-software-src/riscof#17 riscv-software-src/riscof#107 --------- Signed-off-by: Neel Gala <neelgala@incoresemi.com>
1 parent c491d31 commit 44feaf6

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
2323
## [3.17.1] - 2024-02-25
2424
- add unratified Ssdbltrp, Smdbltrp, and Sddbltrp extensions
2525

26+
## [3.17.1] - 2024-02-07
27+
- Fixing yaml parsing issue by replacing special characters in schema_isa.yaml.
28+
2629
## [3.17.0] - 2024-01-09
2730
- support march generation without custom extensions
2831

riscv_config/schemas/schema_isa.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -523,7 +523,7 @@ hart_schema:
523523
schema:
524524
description:
525525
type: string
526-
default: The mstatus register keeps track of and controls the harts current
526+
default: The mstatus register keeps track of and controls the hart's current
527527
operating state.
528528
address: {type: integer, default: 768, allowed: [768]}
529529
priv_mode: {type: string, default: M, allowed: [M]}
@@ -1468,7 +1468,7 @@ hart_schema:
14681468
schema:
14691469
description:
14701470
type: string
1471-
default: The mstatush register keeps track of and controls the harts current
1471+
default: The mstatush register keeps track of and controls the hart's current
14721472
operating state.
14731473
address: {type: integer, default: 768, allowed: [768]}
14741474
priv_mode: {type: string, default: M, allowed: [M]}
@@ -8242,7 +8242,7 @@ hart_schema:
82428242
schema:
82438243
description:
82448244
type: string
8245-
default: The sstatus register keeps track of the processors current operating state.
8245+
default: The sstatus register keeps track of the processor's current operating state.
82468246
address: {type: integer, default: 0x100, allowed: [0x100]}
82478247
priv_mode: {type: string, default: S, allowed: [S]}
82488248
reset-val:
@@ -9738,7 +9738,7 @@ hart_schema:
97389738
schema:
97399739
description:
97409740
type: string
9741-
default: The ustatus register keeps track of the processors current operating state.
9741+
default: The ustatus register keeps track of the processor's current operating state.
97429742
address: {type: integer, default: 0x000, allowed: [0x000]}
97439743
priv_mode: {type: string, default: U, allowed: [U]}
97449744
reset-val:
@@ -10501,7 +10501,7 @@ hart_schema:
1050110501
schema:
1050210502
description:
1050310503
type: string
10504-
default: The hstatus register keeps track of and controls the harts current
10504+
default: The hstatus register keeps track of and controls the hart's current
1050510505
operating state.
1050610506
address: {type: integer, default: 1536, allowed: [1536]}
1050710507
priv_mode: {type: string, default: H, allowed: [H]}
@@ -12229,7 +12229,7 @@ CSR and the value returned in VS-mode or VU-mode.}
1222912229
schema:
1223012230
description:
1223112231
type: string
12232-
default: The vsstatus register keeps track of the processors current operating state.
12232+
default: The vsstatus register keeps track of the processor's current operating state.
1223312233
address: {type: integer, default: 0x200, allowed: [0x200]}
1223412234
priv_mode: {type: string, default: S, allowed: [S]}
1223512235
reset-val:

0 commit comments

Comments
 (0)