mirror of
https://github.com/n64dev/cen64.git
synced 2025-04-02 10:31:54 -04:00
Replaced all references to simulation with emulation Updated copyright year Updated .gitignore to reduce chances of random files being uploaded to the repo Added .gitattributes to normalize all text files, and to ignore binary files (which includes the logo and the NEC PDF)
17 lines
404 B
C
17 lines
404 B
C
//
|
|
// os/posix/main.c: Entry point for POSIX backend.
|
|
//
|
|
// CEN64: Cycle-Accurate Nintendo 64 Emulator.
|
|
// Copyright (C) 2015, Tyler J. Stachecki.
|
|
//
|
|
// This file is subject to the terms and conditions defined in
|
|
// 'LICENSE', which is part of this source code package.
|
|
//
|
|
|
|
#include "cen64.h"
|
|
|
|
// Unix application entry point.
|
|
int main(int argc, const char *argv[]) {
|
|
return cen64_main(argc, argv);
|
|
}
|
|
|