37 lines
1.3 KiB
Markdown
37 lines
1.3 KiB
Markdown
# PCC Compiler (My C++ Compiler)
|
|
|
|

|
|

|
|

|
|

|
|
|
|
**PCC Compiler** is a custom programming language compiler built from scratch in C++. It translates PCC code into x64 Assembly (NASM), which is then linked into a standalone Windows executable.
|
|
|
|
This project was developed as a holiday project for the Masovian Voivodeship coding challenge.
|
|
|
|
## 🚀 Features
|
|
|
|
- **Custom Syntax**: C-like syntax easy for beginners.
|
|
- **Variables**: Support for `int` and `bool` types.
|
|
- **Control Flow**: `if` statements support.
|
|
- **Functions**: Define and call `void` functions.
|
|
- **Math Operations**: Basic arithmetic (`+`, `-`, `==`).
|
|
- **Native Compilation**: Compiles directly to machine code (via NASM).
|
|
|
|
## 🛠️ Installation & Usage
|
|
|
|
### Prerequisites
|
|
To compile code, you need:
|
|
- **NASM** (Netwide Assembler)
|
|
- **GoLink** (Linker)
|
|
- *Note: These tools must be added to your system PATH.*
|
|
|
|
### Quick Start
|
|
1. Download the latest release from the [Releases](../../releases) page.
|
|
2. Unzip the archive.
|
|
3. Run `start.bat` as **Administrator**.
|
|
4. Use the compiler in the terminal:
|
|
|
|
```powershell
|
|
PCC.exe my_script.pcc
|