core/sal: move command-line parameter passing to SC::startup()

This commit is contained in:
Horst Schirmeier
2013-03-14 22:29:43 +01:00
parent 422db3e21d
commit eb17e9ef82
9 changed files with 15 additions and 24 deletions

View File

@ -10,8 +10,7 @@
aspect FailBochsInit {
advice call("int bxmain()") : before ()
{
fail::simulator.collectCommandLineArguments(bx_startup_flags.argc, bx_startup_flags.argv);
fail::simulator.startup();
fail::simulator.startup(bx_startup_flags.argc, bx_startup_flags.argv);
}
};