From d12820cd2526c63c34e2a2f393faff6d79f56898 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Thu, 2 Nov 2023 14:40:56 +0000 Subject: Added a TODO file for tasks --- todo.org | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 todo.org diff --git a/todo.org b/todo.org new file mode 100644 index 0000000..c0e2188 --- /dev/null +++ b/todo.org @@ -0,0 +1,38 @@ +#+title: TODOs +#+author: Aryadev Chavali +#+date: 2023-11-02 + +* TODO Write a label/jump system :ASM: +Essentially a user should be able to write arbitrary labels (maybe +through ~label x~ or ~x:~ syntax) which can be referred to by ~jump~. + +It'll purely be on the assembler side as a processing step, where the +emitted bytecode purely refers to absolute addresses; the VM should +just be dealing with absolute addresses here. +* TODO Allow relative addresses in jumps :ASM: +As requested, a special syntax for relative address jumps. Sometimes +it's a bit nicer than a label. +* TODO Calling and returning control flow :VM: :ASM: +When writing library code we won't know the addresses of where +callers are jumping from. However, most library functions want to +return control flow back to where the user had called them: we want +the code to act almost like an inline function. + +There are two ways I can think of achieving this: ++ Some extra syntax around labels (something like ~@inline