Files
Assembleur/README.md
2024-12-13 16:48:31 +01:00

95 lines
1.9 KiB
Markdown

# Assembleur
## Usage
```bash
./Assembleur [--help] [--reversed] [--version] [--output file] [--format type] file
```
There are 3 format types :
- "int" : 32 bits integers are written. Exemple : `10878976`
- "binint" : bits are written. Exemple : `00000000 10100110 00000000 00000000`
- "bin" : the file is written in pure binary
- "logisim" (default) : the file is written in binary for use in LogiSim
## Exemple
```assembly
operations:
ADD R1 R2 #1
SUB R1 R2 R3
AND R1 R2 #33
XOR R1 R2 R3
OR R1 R2 R3
SL R1 R2 R3
SR R1 R2 R3
MUL R1 R2 R3
io:
STR R1 R2 R3
LD R1 R2 R3
sauts:
JMP controle
JEQU R1 R2 io
JNEQ R1 R2 sauts
JSUP R1 R2 operations
JINF R1 R2 controle
controle:
CALL io
RET
```
Produces
```
00001001 01000000 00000000 00000001
00010001 01001100 00000000 00000000
00101001 01000000 00000000 00100001
01000001 01001100 00000000 00000000
00110001 01001100 00000000 00000000
01010001 01001100 00000000 00000000
01100001 01001100 00000000 00000000
01110001 01001100 00000000 00000000
01000001 01000000 00000000 00000000
01010001 01000000 00000000 00000000
11000000 00000000 00000000 00001111
11010001 01000000 00000000 00001000
11100001 01000000 00000000 00001010
11110001 01000000 00000000 00000000
11000001 01000000 00000000 00001111
11010000 00000000 00000000 00001000
11100000 00000000 00000000 00000000
```
## Releases
Pre-compiled binaries are available in the [Release](https://git.ale-pri.com/Persson-dev/Assembleur/releases) section.
## Build
If you wish to compile yourself, you must have [xmake](https://xmake.io) installed.
Instructions on how to install (and you should) [here](https://xmake.io/#/guide/installation)
```bash
xmake
```
## Run
```bash
xmake run Assembleur [args]
```
Example :
```bash
xmake run Assembleur test.asm -o memory
```
Parses the file `test.asm` and writes the output into the file `memory`
## Install
You can also add the binary to your path using
```bash
xmake install
```