From 232252c2521d87f4148942a5154167be948183bb Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Fri, 3 Nov 2023 21:23:19 +0000 Subject: Completed start points TODO --- todo.org | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/todo.org b/todo.org index 9462c7b..5776ab4 100644 --- a/todo.org +++ b/todo.org @@ -2,21 +2,6 @@ #+author: Aryadev Chavali #+date: 2023-11-02 -* TODO Start points -You know how in standard assembly you can write -#+begin_src asm - global _start -_start: - ... -#+end_src -and that means the label ~_start~ is the point the program should -start from. This means the user can define other code anywhere in the -program and specify something similar to "main" in C programs. - -Proposed syntax: -#+begin_src asm - init