Skip to content
This repository was archived by the owner on Aug 2, 2020. It is now read-only.

Commit 60959b4

Browse files
committed
Uploaded V1.1
1 parent 377b4f7 commit 60959b4

File tree

137 files changed

+1800
-2436
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+1800
-2436
lines changed

Audio/BounceMan.ogg

4.56 MB
Binary file not shown.

Audio/BoxDown.wav

35.5 KB
Binary file not shown.

Audio/BoxLand.wav

17 KB
Binary file not shown.

Audio/BoxUp.wav

35.5 KB
Binary file not shown.

Audio/DoorClose.wav

9.67 KB
Binary file not shown.

Audio/DoorOpen.wav

8.36 KB
Binary file not shown.

Audio/GameOver.ogg

128 KB
Binary file not shown.

Audio/GameWin.ogg

110 KB
Binary file not shown.

Audio/Jump.wav

16.5 KB
Binary file not shown.

Audio/PickUp.wav

5.86 KB
Binary file not shown.

Audio/PlayerLand.wav

2.48 KB
Binary file not shown.

Audio/Tick.wav

3.86 KB
Binary file not shown.

BIOS/bconf.lua

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,6 @@ local RAMConfig = {
7171
}
7272

7373
local RAM, RAMKit = assert(P("RAM","RAM",RAMConfig))
74+
local Audio, AudioKit = assert(P("Audio"))
7475

75-
local _, WEB, WEBKit = P("WEB","WEB",{CPUKit = CPUKit})
76+
--local _, WEB, WEBKit = P("WEB","WEB",{CPUKit = CPUKit})

BIOS/init.lua

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,8 @@ local fs = BPer.HDD
178178
local gpu = BPer.GPU
179179
local cpu = BPer.CPU
180180
local ram = BPer.RAM
181+
local audio = BPer.Audio
182+
local audiokit = Devkits.Audio
181183
local ramkit = Devkits.RAM
182184
local keyboard = BPer.Keyboard
183185
local floppy = BPer.Floppy
@@ -257,7 +259,7 @@ if gpu then
257259
gpu.print("Copyright (C) Rami Sabbagh",15,13)
258260

259261
gpu.printCursor(0,3,0)
260-
gpu.print("NormBIOS Revision 060-010")
262+
gpu.print("CustomBIOS Revision 060-011")
261263
gpu.print("")
262264

263265
gpu.print("Press DEL to enter setup",2,sh-7)
@@ -266,6 +268,7 @@ if gpu then
266268
gpu.print("Main CPU: LuaJIT 5.1")
267269
if ram then gpu.print("RAM: "..(ramkit.ramsize/1024).." Kilo-Bytes ("..ramkit.ramsize.." Bytes)") end
268270
gpu.print("GPU: "..sw.."x"..sh.." 4-Bit (16 Color Palette)")
271+
if audiokit then audiokit.loadAudio() end
269272
gpu.print("")
270273
gpu.print("Harddisks: ")
271274
elseif stage == 6 then

DLL/x64/libcurl.dll

-543 KB
Binary file not shown.

DLL/x86/libcurl.dll

-463 KB
Binary file not shown.

Docs/DiskOS API/Controller.png

-18.1 KB
Binary file not shown.

Docs/DiskOS API/Controls.md

Lines changed: 0 additions & 38 deletions
This file was deleted.

Docs/DiskOS API/Sprite.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

Docs/DiskOS API/btn.md

Lines changed: 0 additions & 36 deletions
This file was deleted.

Docs/DiskOS API/btnp.md

Lines changed: 0 additions & 39 deletions
This file was deleted.

Docs/DiskOS API/map.md

Lines changed: 0 additions & 21 deletions
This file was deleted.

Docs/Enums/KeyConstants.md

Lines changed: 0 additions & 55 deletions
This file was deleted.

Docs/Enums/MouseButtons.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

Docs/Enums/Scancodes.md

Lines changed: 0 additions & 47 deletions
This file was deleted.

Docs/Events/_draw.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

Docs/Events/_init.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

Docs/Events/_keypressed.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

Docs/Events/_keyreleased.md

Lines changed: 0 additions & 23 deletions
This file was deleted.

0 commit comments

Comments
 (0)