Skip to content

Commit

Permalink
Update COMPILEGUIDE.md, README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Fodor Levente committed Feb 1, 2021
1 parent 90bb00b commit ce5b178
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 11 deletions.
24 changes: 14 additions & 10 deletions COMPILEGUIDE.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Manually compiling UBB NASM projects

Everything should be in the same directory for the
sake of simplicity in this case
You should create a script which you can then
Everything should be in the **same directory** for the
sake of simplicity.

:information_source: You should create a **script** which you can then
run any time, without having to scroll through command
history or retype anything
history or retype anything. If something need be changed
you can just edit the script itself.

![demonstration](https://raw.githubusercontent.com/FLevent29/UBB-NASM-Runner/master/demonstration.gif)
![demonstration](demonstration1.gif)

## Compile single file project

Expand Down Expand Up @@ -62,6 +63,8 @@ pause
it might be annoying if you run the script from
a terminal directly, in that case it should be left out

![demonstration](demonstration2.gif)

## Compile multiple file project

Say you want to compile `STRPELDA.asm`, like in the demo image
Expand All @@ -75,10 +78,11 @@ It has the following includes :
%include 'IONUM.inc'
```

These all have their `.asm` counterparts that need to be
compiled and those `.asm` files have their own includes,
some are shared, like `IOSTR.inc` both in `STRPELDA.asm`
and `IONUM.asm`
> :information_source: These all have their `*.asm` counterparts that need to be
> compiled and those `*.asm` files have their own includes
> Some are shared, like `IOSTR.inc` both in `STRPELDA.asm`
> and `IONUM.asm`, or `mio.inc` in
> everything except `STRPELDA.asm`
You probably get the idea from this code snippet :

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ instead of having to struggle with all those pesky terminal commands.
> :warning:**NOTE** You'll most probably be tasked to compile / link / run a project for **exams _manually_**,
> [here's some help with that](COMPILEGUIDE.md)
![demo](https://raw.githubusercontent.com/FLevent29/UBB-NASM-Runner/master/demo.png)
![demo](demo.png)

### Convenient

Expand Down
Binary file removed demonstration.gif
Binary file not shown.
Binary file added demonstration1.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added demonstration2.gif
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit ce5b178

Please sign in to comment.