minor cleanup

This commit is contained in:
Florent Kermarrec 2018-01-23 00:35:20 +01:00
parent d07ddd11d9
commit 67f8718b26
2 changed files with 3 additions and 3 deletions

View File

@ -162,8 +162,8 @@ class Builder:
if self.gateware_toolchain_path is not None:
toolchain_path = self.gateware_toolchain_path
if 'run' not in kwargs:
kwargs['run'] = self.compile_gateware
if "run" not in kwargs:
kwargs["run"] = self.compile_gateware
vns = self.soc.build(build_dir=os.path.join(self.output_dir, "gateware"),
toolchain_path=toolchain_path, **kwargs)
return vns

View File

@ -10,7 +10,7 @@ extern "C" {
// instructions. It also doesn't have a global interrupt enable/disable, so
// we have to emulate it via saving and restoring a mask and using 0/~1 as a
// hardware mask.
// Due to all this somewhat low-level mess, all of the glue is implementein
// Due to all this somewhat low-level mess, all of the glue is implemented in
// the RiscV crt0, and this header is kept as a thin wrapper. Since interrupts
// managed by this layer, do not call interrupt instructions directly, as the
// state will go out of sync with the hardware.