Kaynağa Gözat

Create SVC handler

DricomDragon 5 yıl önce
ebeveyn
işleme
5440491ae8
2 değiştirilmiş dosya ile 12 ekleme ve 0 silme
  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");