You are browsing as a guest. Sign up (or log in) to start making projects!

Ravduct

@Ravduct

Joined June 2nd, 2026

  • 3Devlogs
  • 1Projects
  • 0Ships
  • 0Votes
Open comments for this post

50m 54s logged

Shortcut for building files

I just made a shortcut today, so it will help me later in this project.

PowerShell file

I have added a PowerShell file to build a Binary file (.bin) and other files (.img, .vdi) from my main Assembly file (.asm).

& "C:\Program Files\NASM\nasm.exe" -f bin boot.asm -o boot.bin


del disk.img -ErrorAction SilentlyContinue
del disk.vdi -ErrorAction SilentlyContinue

$disk= New-Object byte[] (1474560)
[IO.File]::WriteAllBytes("disk.img", $disk)

$boot= [IO.File]::ReadAllBytes("boot.bin")
$disk= [IO.File]::ReadAllBytes("disk.img")
[Array]::Copy($boot, 0, $disk, 0, 512)
[IO.File]::WriteAllBytes("disk.img", $disk)

& "C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" convertfromraw disk.img disk.vdi --format VDI

Shortcut for building files

I just made a shortcut today, so it will help me later in this project.

PowerShell file

I have added a PowerShell file to build a Binary file (.bin) and other files (.img, .vdi) from my main Assembly file (.asm).

& "C:\Program Files\NASM\nasm.exe" -f bin boot.asm -o boot.bin


del disk.img -ErrorAction SilentlyContinue
del disk.vdi -ErrorAction SilentlyContinue

$disk= New-Object byte[] (1474560)
[IO.File]::WriteAllBytes("disk.img", $disk)

$boot= [IO.File]::ReadAllBytes("boot.bin")
$disk= [IO.File]::ReadAllBytes("disk.img")
[Array]::Copy($boot, 0, $disk, 0, 512)
[IO.File]::WriteAllBytes("disk.img", $disk)

& "C:\Program Files\Oracle\VirtualBox\VBoxManage.exe" convertfromraw disk.img disk.vdi --format VDI

Replying to @Ravduct

0
44
Open comments for this post
Reposted by @Ravduct

3h 13m 29s logged

devlog#6

  • added a guide app
  • and 3 new live wallpapers with parallax effect
  • restyled dock and app icons a bit
  • new songs and covers
  • feature to resize window’s length and breadth

Go check it out!! :3 its done now (hopefully, i dont want more bugs 💔✌)

devlog#6

  • added a guide app
  • and 3 new live wallpapers with parallax effect
  • restyled dock and app icons a bit
  • new songs and covers
  • feature to resize window’s length and breadth

Go check it out!! :3 its done now (hopefully, i dont want more bugs 💔✌)

Replying to @subhansh

4
4046

Followers

Loading…