There's no equivalent to the old Speccy beep command in DB.
However, you
should be able to 'kludge' it using the Beep function in Kernel32.dll with a DLL call.
The code below ought to work, but on my machine it doesn't, so you can try it. If it doesn't work, then I don't think you can do anything about it - other than record two wav files using a third-party tone generator program.
If you record half a second, you can use a timer in DB to loop them for the specified amount of time.
Sync On: CLS 0
Load Dll "Kernel32.dll",1
Input "Enter Frequency: (KHz) "; Freq
Input "Enter Duration (Milliseconds): "; Duration
Beep(freq, duration)
Print
Print "Finished - Press A Key"
Wait Key
Delete DLL 1
End
Function Beep(freq, duration)
Call DLL 1,"Beep", Freq, Duration
EndFunction
TDK_Man