/vm.asm (1d1e0688e39edfddf3f6f9be97951eda8fed770f) (214 bytes) (mode 100644) (type blob)
SECTION .data ; initial vars
msg: db "Dit is een test",10
len: equ $-msg
SECTION .text ; code
global main
main:
mov edx, len
mov ecx, msg
mov ebx, 1
mov eax, 4
int 0x80
mov ebx, 0
mov eax, 1
int 0x80
Mode |
Type |
Size |
Ref |
File |
100644 |
blob |
151 |
4ef89f47a82dd1b9e2f48a9d97b585333ad27980 |
.gitignore |
100644 |
blob |
1806 |
eae6c1b5b9d28e1eb052a8c2489c34dbb8f5c8cd |
MyVM.c |
100644 |
blob |
1018 |
973a88edc36bb46111d5bf01a8f3af14061fa0ed |
README.md |
040000 |
tree |
- |
a354be5c4ff12f90a0e1da748c5c45ad75ad4d38 |
bootloader |
100644 |
blob |
8 |
ed6c9f167409bed827768d5b21b97e26d84ef3a1 |
prog.dat |
040000 |
tree |
- |
589c41523ab601706bededb4b3f7b1443904405f |
shell |
100644 |
blob |
92 |
d01430525f1c584a18ae86b467ff824f3fdcc410 |
template.asm |
100644 |
blob |
214 |
1d1e0688e39edfddf3f6f9be97951eda8fed770f |
vm.asm |
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"
Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/kapstok/Bytecode-OS
Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/kapstok/Bytecode-OS
Clone this repository using git:
git clone git://git.rocketgit.com/user/kapstok/Bytecode-OS
You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a
merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main