Age | Commit message (Collapse) | Author |
|
nasm lets us specify whether global data items are functions or data.
as for us, we do not have any data atm.
every global declaration of function have been changed from
global function_name
to
global function_name:function
|
|
the manual of yasm says that we should avoid declaring [BITS ...]
explicitely.
|
|
the files with '.s' extension are not properly displayed by github.
|
|
This commit includes the following functions:
* list_init
* list_new_raw
* list_new
* list_append
* list_apply
Everything seems to work well but nothing has been optimized so there is
a lot of work remaining.
|