diff --git a/README.md b/README.md index 7b75f86..e41d167 100644 --- a/README.md +++ b/README.md @@ -625,7 +625,7 @@ This chapter is describing plugins currently implemented. - [SrcPlugin](#srcplugin) - [IntAluPlugin](#intaluplugin) - [LightShifterPlugin](#lightshifterplugin) -- [FullBarrielShifterPlugin](#fullbarrielshifterplugin) +- [FullBarrelShifterPlugin](#fullbarrelshifterplugin) - [BranchPlugin](#branchplugin) - [DBusSimplePlugin](#dbussimpleplugin) - [DBusCachedPlugin](#dbuscachedplugin) @@ -803,9 +803,9 @@ Implement SLL/SRL/SRA instructions by using an iterative shifter register, whill The result is injected into the pipeline directly at the end of the execute stage. -#### FullBarrielShifterPlugin +#### FullBarrelShifterPlugin -Implement SLL/SRL/SRA instructions by using an full barriel shifter, so it execute all shifts in a single cycle. +Implement SLL/SRL/SRA instructions by using an full barrel shifter, so it execute all shifts in a single cycle. | Parameters | type | description | | ------ | ----------- | ------ | diff --git a/src/test/scala/vexriscv/Play.scala b/src/test/scala/vexriscv/Play.scala index d5448f1..4e8b72e 100644 --- a/src/test/scala/vexriscv/Play.scala +++ b/src/test/scala/vexriscv/Play.scala @@ -52,7 +52,7 @@ object PlayGen extends App{ separatedAddSub = false, executeInsertion = false ), - new FullBarrielShifterPlugin, + new FullBarrelShifterPlugin, new HazardSimplePlugin( bypassExecute = false, bypassMemory = false,