Skip to content

Commit

Permalink
[hardware] Enable OSSupport by default
Browse files Browse the repository at this point in the history
  • Loading branch information
mp-17 committed Jan 13, 2025
1 parent 970bfa7 commit acafb48
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hardware/src/ara.sv
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module ara import ara_pkg::*; #(
// RVV Parameters
parameter int unsigned NrLanes = 0, // Number of parallel vector lanes.
parameter int unsigned VLEN = 0, // VLEN [bit]
parameter int unsigned OSSupport = 0,
parameter int unsigned OSSupport = 1,
// Support for floating-point data types
parameter fpu_support_e FPUSupport = FPUSupportHalfSingleDouble,
// External support for vfrec7, vfrsqrt7
Expand Down
2 changes: 1 addition & 1 deletion hardware/src/ara_soc.sv
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module ara_soc import axi_pkg::*; import ara_pkg::*; #(
// RVV Parameters
parameter int unsigned NrLanes = 0, // Number of parallel vector lanes.
parameter int unsigned VLEN = 0, // VLEN [bit]
parameter int unsigned OSSupport = 0, // Support for OS
parameter int unsigned OSSupport = 1, // Support for OS
// Support for floating-point data types
parameter fpu_support_e FPUSupport = FPUSupportHalfSingleDouble,
// External support for vfrec7, vfrsqrt7
Expand Down
2 changes: 1 addition & 1 deletion hardware/src/ara_system.sv
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module ara_system import axi_pkg::*; import ara_pkg::*; #(
// RVV Parameters
parameter int unsigned NrLanes = 0, // Number of parallel vector lanes.
parameter int unsigned VLEN = 0, // VLEN [bit]
parameter int unsigned OSSupport = 0, // Support for floating-point data types
parameter int unsigned OSSupport = 1, // Support for floating-point data types
parameter fpu_support_e FPUSupport = FPUSupportHalfSingleDouble,
// External support for vfrec7, vfrsqrt7
parameter fpext_support_e FPExtSupport = FPExtSupportEnable,
Expand Down

0 comments on commit acafb48

Please sign in to comment.