minor cleanup
authorFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 22 Jan 2018 23:35:20 +0000 (00:35 +0100)
committerFlorent Kermarrec <florent@enjoy-digital.fr>
Mon, 22 Jan 2018 23:35:20 +0000 (00:35 +0100)
litex/soc/integration/builder.py
litex/soc/software/include/base/irq.h

index 066c847a1d2439188c060225b4aab3f3a94a1530..7be7d4e5b941497c21a76acfd06b302407e5678c 100644 (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
index a042384c28bcea4004dab6c35c84f8ec51a69797..5f8c36d7ab7250cda638249072f9277a6d2e9552 100644 (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 implementein
 // 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.