Import existing source tree; original VCS history is no longer available. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
379 B
Plaintext
16 lines
379 B
Plaintext
/////////////////////////////////////////////
|
|
// MIDI Song Loader for "test2.mid"
|
|
// Copyright (C) David Olofson, 2002
|
|
/////////////////////////////////////////////
|
|
|
|
print "Loading \"Test2\"...\n";
|
|
print " Copyright (C) David Olofson, 2002.\n";
|
|
|
|
w_load target, "test2.mid";
|
|
p_param target, WAVE, target;
|
|
p_param target, DRIVER, MIDI;
|
|
|
|
w_load 32, "sine.agw";
|
|
|
|
print " Done!\n";
|