npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@obinexusltd/verilog-polycall

v0.1.0

Published

Verilog/SystemVerilog DPI-C binding for libpolycall 1.5.0.

Readme

verilog-polycall

Verilog/SystemVerilog binding for libpolycall 1.5.0. The binding is a thin adapter: it maps an HDL call onto polycall_ffi_run_config(config_path, 1) and contains no configuration parser or runtime logic.

API

Compile src/verilog_polycall.sv before modules that import the package:

import verilog_polycall::*;

initial begin
  run_config_or_fatal("verilog-polycallrc");
end

run_config(path) returns the libpolycall status unchanged. run_config_or_fatal(path) raises the Verilog-native $fatal error when that status is non-zero.

The HDL boundary uses SystemVerilog DPI-C because Verilog itself has no direct C foreign-function syntax. Link src/verilog_polycall.c and a libpolycall v1.5 library that exports polycall_ffi_run_config into the simulator executable.

npm package

Install the source package:

npm install @obinexusltd/verilog-polycall

The CommonJS entry point exposes absolute paths that build tooling can pass to an HDL simulator or C compiler:

const polycall = require('@obinexusltd/verilog-polycall');

console.log(polycall.systemVerilog);
console.log(polycall.nativeAdapter);
console.log(polycall.publicHeader);
console.log(polycall.ffiHeader);
console.log(polycall.config);

The npm tarball explicitly includes src/, include/, generated/, examples/, scripts/, and tests/, together with the Makefile, manifest, and runtime configuration. Compiled platform-specific output is excluded.

Build and test

Build the native adapter archive:

make

Run the boundary test, which uses a mock core to prove the adapter forwards the path, fixes run=1, and propagates statuses without needing a running service:

make test
make verify-dry

With Verilator installed, run the HDL smoke test as well:

make test-hdl

The same workflow is available through npm:

npm run build
npm test
npm run verify
npm run test:hdl

A real integration run requires a libpolycall v1.5 library that exports polycall_ffi_run_config. Point POLYCALL_CPPFLAGS and POLYCALL_LDFLAGS at that core and run:

make example \
  POLYCALL_CPPFLAGS="-I/path/to/libpolycall/include" \
  POLYCALL_LDFLAGS="-L/path/to/libpolycall/lib -lpolycall"

The runnable HDL is in examples/basic.sv, and the read-only shared-schema override is verilog-polycallrc.