val path = System.getProperty("user.dir") + "/source/load-ivy.sc" interp.load.module(ammonite.ops.Path(java.nio.file.FileSystems.getDefault().getPath(path))) import chisel3._ import chisel3.util._ import chisel3.tester._ import chisel3.tester.RawTester.test import dotvisualizer._ class RegisterFile(register_number: Int, register_width: Int) extends Module { val io = IO(new Bundle { // συμπληρώστε τις εισόδους/εξόδους.. }) // συμπληρώστε... } test(new RegisterFile(..συμπληρώστε τις παραμέτρους..)) { c => // ..συμπληρώστε.. } println("SUCCESS!!")