We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
Regz generates almost the same code no matter if i use the --microzig option or not so
./regz --format svd rp.svd > rp.zig generates almost the same code as: ./regz --microzig --format svd rp.svd > rp.zig does
./regz --format svd rp.svd > rp.zig
./regz --microzig --format svd rp.svd > rp.zig
The only differences are that the --microzig option adds an
const micro = @import("microzig"); const mmio = micro.mmio
at the start and without the option it uses
const mmio = @import("mmio");
instead
This leads to undefined identifier "micro" in the generated Zig files without the --microzig option.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
Regz generates almost the same code no matter if i use the --microzig option or not so
./regz --format svd rp.svd > rp.zig
generates almost the same code as:
./regz --microzig --format svd rp.svd > rp.zig
does
The only differences are that the --microzig option adds an
at the start and without the option it uses
instead
This leads to undefined identifier "micro" in the generated Zig files without the --microzig option.
The text was updated successfully, but these errors were encountered: