| 
									
										
										
										
											2020-02-19 23:10:58 -05:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU System Emulator | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Copyright (c) 2003-2020 Fabrice Bellard | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2022-04-20 17:25:47 +04:00
										 |  |  | #include "qemu-main.h"
 | 
					
						
							| 
									
										
										
										
											2020-02-19 23:10:58 -05:00
										 |  |  | #include "sysemu/sysemu.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef CONFIG_SDL
 | 
					
						
							|  |  |  | #include <SDL.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-19 22:27:54 +09:00
										 |  |  | int qemu_default_main(void) | 
					
						
							| 
									
										
										
										
											2020-02-19 23:10:58 -05:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2022-07-26 00:37:45 +02:00
										 |  |  |     int status; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     status = qemu_main_loop(); | 
					
						
							| 
									
										
										
										
											2023-10-03 09:14:24 +02:00
										 |  |  |     qemu_cleanup(status); | 
					
						
							| 
									
										
										
										
											2020-02-19 23:10:58 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-07-26 00:37:45 +02:00
										 |  |  |     return status; | 
					
						
							| 
									
										
										
										
											2020-02-19 23:10:58 -05:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2022-04-20 17:25:47 +04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-08-19 22:27:54 +09:00
										 |  |  | int (*qemu_main)(void) = qemu_default_main; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-04-20 17:25:47 +04:00
										 |  |  | int main(int argc, char **argv) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2022-08-19 22:27:54 +09:00
										 |  |  |     qemu_init(argc, argv); | 
					
						
							|  |  |  |     return qemu_main(); | 
					
						
							| 
									
										
										
										
											2022-04-20 17:25:47 +04:00
										 |  |  | } |