mirror of
https://github.com/lowRISC/ibex.git
synced 2025-06-28 09:17:17 -04:00
13 lines
383 B
C++
13 lines
383 B
C++
// Copyright lowRISC contributors.
|
|
// Licensed under the Apache License, Version 2.0, see LICENSE for details.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
#include "ibex_simple_system.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
SimpleSystem simple_system(
|
|
"TOP.ibex_simple_system.u_ram.u_ram.gen_generic.u_impl_generic",
|
|
1024 * 1024);
|
|
|
|
return simple_system.Main(argc, argv);
|
|
}
|