kernel-mode #1

Manually merged
anton merged 69 commits from kernel-mode into master 2021-11-16 08:02:40 +01:00
2 changed files with 3 additions and 2 deletions
Showing only changes of commit c2002cd46d - Show all commits

3
.gitignore vendored
View File

@ -1,2 +1,3 @@
venv
__pycache__
__pycache__
.mypy_cache

View File

@ -134,7 +134,7 @@ class PrivCPU(CPU):
self._time_interrupt_enabled = True
@self.csr.callback('mtimecmph')
def mtimecmp(old, new):
def mtimecmph(old, new):
self._time_timecmp = (new << 32) + self.csr.get('mtimecmp')
self._time_interrupt_enabled = True