Update readme

This commit is contained in:
Loic GUEGAN 2018-08-31 20:12:13 +02:00
parent 679b25a874
commit 10279426e5

View file

@ -18,8 +18,8 @@ All the architecture components are located in _components_ folder:
### How to load code in memory ? ### How to load code in memory ?
Simply by editing **ram.txt**. Each line corresponding to a byte entry starting from address 0x0 to whatever to $+\infty$ . Each line can be an IJVM _opcode_ or a random byte. Here is an example of how to add two number: Simply by editing **ram.txt**. Each line corresponding to a byte entry starting from address 0x0 to whatever to $+\infty$ . Each line can be an IJVM _opcode_ or a random byte. Here is an example of how to add two number:
> BIPUSH > BIPUSH<br />
> 12 > 12<br />
> BIPUSH > BIPUSH<br />
> 5 > 5<br />
> IADD > IADD<br />