瀏覽代碼

Create SVC handler

DricomDragon 5 年之前
父節點
當前提交
5440491ae8
共有 2 個文件被更改,包括 12 次插入0 次删除
  1. 5 0
      prog/sources/svc-handler.cpp
  2. 7 0
      prog/sources/svc-handler.h

+ 5 - 0
prog/sources/svc-handler.cpp

@@ -0,0 +1,5 @@
+#include "all-headers.h"
+
+void supervisorCall(SECTION_MODE) {
+	// TODO
+}

+ 7 - 0
prog/sources/svc-handler.h

@@ -0,0 +1,7 @@
+#pragma once
+
+#include "software-modes.h"
+
+//$interrupt-section SVC
+
+void supervisorCall(SECTION_MODE) asm ("interrupt.section.SVC");