-7

I am new to HDL and just wanted to confirm whether these lines of code are written in VHDL or Verilog?

DE0_SOPC DE0_SOPC_inst(
                        // 1) global signals:
                         .clk(CLOCK_50),
                         .pll_cpu(),
                         .pll_sdram(DRAM_CLK),
                         .reset_n(system_reset_n));
Tom
  • 11
  • 4

2 Answers2

2

It's Verilog. It is an instantiation of a module inside another. This is how you do it in Verilog; it is not how you do it in VHDL.

Matthew Taylor
  • 12,111
  • 3
  • 12
  • 39
0

Yes. These are verilog code lines. As per your previous comments, Type: .v files belong to verilog codes.

Satheesh.R
  • 49
  • 4