Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into dhower-qc/issue169
Browse files Browse the repository at this point in the history
  • Loading branch information
dhower-qc committed Oct 25, 2024
2 parents d4e46a9 + a5dce13 commit d2e0faf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
.yardoc
.stamps
.venv
.asciidoctor
diag-ditaa-*
arch/manual/isa/**/riscv-isa-manual
gen
node_modules
_site
Expand Down
2 changes: 1 addition & 1 deletion arch/isa/globals.isa
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ enum PmaAttribute {

enum Pbmt {
PMA 0 # Use underlying PMA
NV 1 # Non-cacheable, idempotent, weakly-ordered (RVWMO), main memory
NC 1 # Non-cacheable, idempotent, weakly-ordered (RVWMO), main memory
IO 2 # Non-cacheable, non-idempotent, strongly (channel 0) ordered, I/O
}

Expand Down
4 changes: 2 additions & 2 deletions backends/profile_doc/tasks.rake
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ end

namespace :gen do
desc "Create a specification PDF for +profile_family+"
task :profile_pdf, [:profile_family] => ["gen:arch"] do |_t, args|
task :profile_pdf, [:profile_family] => ["#{$root}/.stamps/arch-gen-_64.stamp"] do |_t, args|
family_name = args[:profile_family]
raise ArgumentError, "Missing required option +profile_family+" if family_name.nil?

Expand All @@ -92,7 +92,7 @@ namespace :gen do
end

desc "Create a specification HTML for +profile_family+"
task :profile_html, [:profile_family] => ["gen:arch"] do |_t, args|
task :profile_html, [:profile_family] => ["#{$root}/.stamps/arch-gen-_64.stamp"] do |_t, args|
family_name = args[:profile_family]
raise ArgumentError, "Missing required option +profile_family+" if family_name.nil?

Expand Down

0 comments on commit d2e0faf

Please sign in to comment.