You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
354 B

  1. interface jtag_vpi
  2. # Set the VPI JTAG server port
  3. if { [info exists VPI_PORT] } {
  4. set _VPI_PORT $VPI_PORT
  5. } else {
  6. set _VPI_PORT 5555
  7. }
  8. # Set the VPI JTAG server address
  9. if { [info exists VPI_ADDRESS] } {
  10. set _VPI_ADDRESS $VPI_ADDRESS
  11. } else {
  12. set _VPI_ADDRESS "127.0.0.1"
  13. }
  14. jtag_vpi_set_port $_VPI_PORT
  15. jtag_vpi_set_address $_VPI_ADDRESS