13 lines
338 B
Zig
13 lines
338 B
Zig
// Imports
|
|
const flipperzero = @import("flipperzero");
|
|
const app = @import("app.zig");
|
|
const manifest = flipperzero.manifest;
|
|
|
|
// Manifest
|
|
export const FAP_MANIFEST linksection(".fapmeta") = manifest.createApplicationManifest(2048, 1, "Zlipper", 0, null);
|
|
|
|
// Entry function
|
|
export fn _start(args: *u8) i32 {
|
|
return app.main(args);
|
|
}
|