mirror of
https://github.com/Michaelangel007/apple2_prodos_utils.git
synced 2024-12-27 05:32:56 +00:00
Add Windows build instructions
This commit is contained in:
parent
5ec0c84a73
commit
c3771eed99
27
README.md
27
README.md
@ -157,5 +157,32 @@ Blocks:
|
||||
|
||||
# Building / Compiling
|
||||
|
||||
* MacOS
|
||||
|
||||
`make clean; make`
|
||||
|
||||
Windows:
|
||||
|
||||
Start Microsoft Visual Studio 2019 and open `MSVC2019\prodos.sln`.
|
||||
|
||||
# Soft Beep
|
||||
|
||||
```as
|
||||
|
||||
ORG $300
|
||||
SoftBeep LDY #$20
|
||||
SoftCycle LDA #$02 ;+
|
||||
JSR Wait
|
||||
STA Squeeker
|
||||
LDA #$24
|
||||
JSR Wait
|
||||
STA Squeeker
|
||||
DEY
|
||||
BNE SoftCycle ;^ $0904
|
||||
```
|
||||
|
||||
Converted to ASCII hex dump
|
||||
|
||||
```
|
||||
certutil -encodehex -f softbeep softbeep.hex 12
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user