Skip to content

Commit

Permalink
mlonmcu/target/riscv/etiss_pulpino.py: fix get_ini_bool_config
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilippvK committed Oct 2, 2024
1 parent cab0bd9 commit e705dbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mlonmcu/target/riscv/etiss_pulpino.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class EtissPulpinoTarget(EtissTarget):
def __init__(self, name="etiss_pulpino", features=None, config=None):
super().__init__(name, features=features, config=config)

def get_ini_bool_config(self):
ret = super().get_ini_bool_config()
def get_ini_bool_config(self, override=None):
ret = super().get_ini_bool_config(override=override)
ret["arch.enable_semihosting"] = False
return ret

Expand Down

0 comments on commit e705dbb

Please sign in to comment.