Skip to content

Commit

Permalink
[emu] remove final to allow DPIModule name override for inhouse emulator
Browse files Browse the repository at this point in the history
  • Loading branch information
sequencer committed Apr 17, 2024
1 parent 6c5ddd7 commit 95b68a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion emuhelper/src/DPIModuleLegacy.scala
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ abstract class DPIModuleLegacy
with HasExtModuleInline {

// C Style
final override def desiredName: String = "[A-Z\\d]".r.replaceAllIn(super.desiredName, { m =>
override def desiredName: String = "[A-Z\\d]".r.replaceAllIn(super.desiredName, { m =>
(if(m.end(0) == 1) "" else "_") + m.group(0).toLowerCase()
})

Expand Down

0 comments on commit 95b68a4

Please sign in to comment.