Git Product home page Git Product logo

giovanni's People

Contributors

gabrieloc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

giovanni's Issues

Can't open roms

i have finally found out how to compile the stupid thing, and when i try to open games, it says that i dont have permission to access documents. please help? ive spent so much time on this

No sideload with Cydia Impactor?

I am not sure if i am the problem or something went wrong? I use an IPA file and try to download it with Cydia Impactor, but it is stuck during the varification process in the end. Its not caused due to installation limit and other IPAs work fine, like C64Scene for example? Can anyone help in this case?

Update for Apple Watch Series 6?

Hi, I have manage to run it under Xcode simulation with series 6 but stuck on the Loading Screen.

  • MacBook Pro (Retina, 13-inch, Early 2015)
  • macOS Big Sur 11.1 (20C69)
  • Xcode Version 12.3 (12C33)

Screenshot 2021-02-02 at 4 38 41 PM

2021-02-02 16:47:49.470849+0800 giovanni WatchKit Extension[39288:418535] [TableView] Warning once only: UITableView was told to layout its visible cells and other contents without being in the view hierarchy (the table view or one of its superviews has not been added to a window). This may cause bugs by forcing views inside the table view to load and perform layout without accurate information (e.g. table view bounds, trait collection, layout margins, safe area insets, etc), and will also cause unnecessary performance overhead due to extra layout passes. Make a symbolic breakpoint at UITableViewAlertForLayoutOutsideViewHierarchy to catch this in the debugger and see what caused this to occur, so you can avoid this action altogether if possible, or defer it until the table view has been added to a window. Table view: <PUICTableView: 0x7fb049027800; baseClass = UITableView; frame = (0 0; 182 10); clipsToBounds = YES; gestureRecognizers = <NSArray: 0x6000011fad90>; animations = { position=<CABasicAnimation: 0x600001fd7fc0>; bounds.origin=<CABasicAnimation: 0x600001fd0500>; bounds.size=<CABasicAnimation: 0x600001fd04e0>; }; layer = <CALayer: 0x600001fd5de0>; contentOffset: {0, 0}; contentSize: {182, 95.5}; adjustedContentInset: {0, 0, -5, 0}; dataSource: <SPInterfaceListView: 0x7fb04872fe20; frame = (-91 0; 182 0); clipsToBounds = YES; animations = { bounds.origin=<CABasicAnimation: 0x600001fd7e20>; bounds.size=<CABasicAnimation: 0x600001fd7e60>; }; layer = <CALayer: 0x600001fbb640>>> 2021-02-02 16:47:50.441750+0800 giovanni WatchKit Extension[39288:418535] [default] has no material, defaulting to light aluminum 2021-02-02 16:47:57.735784+0800 giovanni WatchKit Extension[39288:418535] Metal API Validation Enabled

Compilation Error

I just tried to compile to project and here's the issues I'm getting :

clang: error: no such file or directory: '/Users/Manil/Downloads/GIOVANNI-master/gambatte/libgambatte/src/statesaver.cpp'
clang: error: no input files

clang: error: no such file or directory: '/Users/Manil/Downloads/GIOVANNI-master/gambatte/common/videolink/vfilters/maxsthq3x.cpp'
clang: error: no input files

clang: error: no such file or directory: '/Users/Manil/Downloads/GIOVANNI-master/gambatte/libgambatte/src/sound/channel3.cpp'
clang: error: no input files

clang: error: no such file or directory: '/Users/Manil/Downloads/GIOVANNI-master/gambatte/libgambatte/src/interrupter.cpp'
clang: error: no input files

Is there any way to fix it ? I'd like to help the developing btw ;)

7days re-sign question

How to re-sign the simulator after 7 days? Because the simulator has no API, it cannot be renewed using altstore. The application on the watch will disappear after the expiration of seven days, and the archived data will be lost at the same time. What can I do to keep the watch's archiving progress?

cannot use

the software say “there was an issue loading this game”

Bug: Looking for games...

Hello!
Recently I have gotten the latest version of GIOVANNI working and have been using it but one issue I have found is every once in a while after a crash, when I reopen the app on my watch, it says "Looking for games..." and will continue to say that, this happened to me last night and I decided to leave it and go to sleep and when I woke up and reopened the app it still says that. I do have Pokemon Yellow installed and can play it and the only way I found to fix this is to restart my Apple Watch. I am on a Series 0 (2015) 42mm Watch on the latest version of GIOVANNI and Watch OS.

Issue (and fix): Not installing on AppleWatch

Initially and after multiple trials and errors, I could not for the love of me get the app to install to my watch by pressing the button on the Watch App on my phone.

The simple fix to this was to change the Build Settings for each app. I changed "Skip Install" from "Yes" to "No" and sure enough it worked!

Missing Files?

Everything worked perfectly until it came time to build. Here are the errors:

Build input file cannot be found: '/Users/Username/Documents/GIOVANNI/gambatte/common/videolink/vfilters/maxsthq3x.cpp'

Build input file cannot be found: '/Users/Username/Documents/GIOVANNI/gambatte/libgambatte/src/statesaver.cpp'

I didn't move any files and only followed the directions carefully. Please help!

Cartridge.cpp and stdfile.h Help

Cartridge.cpp Issue

static std::string const stripDir(std::string const &str) {
std::string::size_type const lastSlash = str.find_last_of('/');
if (lastSlash != std::string::npos)
return str.substr(lastSlash + 1);

return str;

}

std::string const Cartridge::saveBasePath() const {
return saveDir_.empty()
? defaultSaveBasePath_
: saveDir_ + stripDir(defaultSaveBasePath_);
}

void Cartridge::setSaveDir(std::string const &dir) {
saveDir_ = dir;
if (!saveDir_.empty() && saveDir_[saveDir_.length() - 1] != '/')
saveDir_ += '/';
}

static void enforce8bit(unsigned char *data, std::size_t size) {
if (static_cast(0x100))
while (size--)
*data++ &= 0xFF;

In the while (size--) section, I believe it is line 520, I'm getting a semantic issue stating code will never be executed. I'm totally new to this, so any help would be greatly appreciated! Is there something I'm supposed to add/change?

stdfile.h Issue

namespace gambatte {

class StdFile : public File {
public:
explicit StdFile(char const *filename)
: stream_(filename, std::ios::in | std::ios::binary)
, fsize_(0)
{
if (stream_) {
stream_.seekg(0, std::ios::end);
fsize_ = stream_.tellg();
stream_.seekg(0, std::ios::beg);
}
}

I'm also getting an issue here stating:

Implicit conversion loses integer precision: 'streamoff' (aka 'long long') to 'std::size_t' (aka 'unsigned long')

Also not sure what to do. Again, any help would be appreciated! Thanks!

Problem With App Installation

Hello everyone, recently saw this project and thought it would be cool to try out but recently whilst trying to build and run the app I got this error (shown in the picture), I tried to search the internet for a fix or answer to this problem but alas I was left without a result, if someone could help me that would be awesome!

My Bundle Identifiers: (for the place where it says [myname], I did not actually put that, I put my name but do not want to share that info <3
iOS: com.[myname].giovanni
WatchOS: com.[myname].giovanni
Watchkit Extension: com.[myname].giovanni
Gambatte: com.[myname].gambatte

NSExtension
WKAppBundleIdentifier: com.[myname].giovanni
NSExtensionPointIdentifier: com.apple.watchkit
Thank You!
screen shot 2017-03-24 at 8 07 28 pm

Problem with Bundle Identifiers

Following the tutorial you linked I couldnt just compile the project as it is. I needed to add my Team Signing everywhere and did so. Now I changed every gabrieloc in the Bundle Identifier to dendron and it still wont work. Now I just get this error and cant seem to fix it.

WatchKit App doesn't contain any WatchKit Extensions whose WKAppBundleIdentifier matches "com.dendron.giovanni". Verify that the value of WKAppBundleIdentifier in your WatchKit Extension's Info.plist matches the value of CFBundleIdentifier in your WatchKit App's Info.plist.

Checking every Bundle Identifier and it fits perfect. But I also cant seem to find CFBundleIdentifier in the plist just the WKAppBundleIdentifier under the NSExtension and I changed that too.

Xcode build error

I have this problem what can I do ?
/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/bitmap_font.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/bitmap_font.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/common/videolink/vfilters/catrom3x.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/common/videolink/vfilters/catrom3x.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/sound/envelope_unit.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/sound/envelope_unit.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/initstate.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/initstate.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/video/lyc_irq.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/video/lyc_irq.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/common/videolink/vfilters/maxsthq2x.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/common/videolink/vfilters/maxsthq2x.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/common/resample/src/resamplerinfo.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/common/resample/src/resamplerinfo.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/common/skipsched.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/common/skipsched.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/sound.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/sound.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/video/sprite_mapper.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/video/sprite_mapper.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/state_osd_elements.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/state_osd_elements.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/statesaver.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/statesaver.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/tima.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/tima.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/common/resample/src/u48div.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/common/resample/src/u48div.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/common/videolink/vfilterinfo.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/common/videolink/vfilterinfo.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/video.cpp Build input file cannot be found: '/Users/famille/Downloads/GIOVANNI-master/gambatte/libgambatte/src/video.cpp'. Did you forget to declare this file as an output of a script phase or custom build rule which produces it?

The regions that should be assigned to arrow keys don't seem to work properly

I can't see any hint on the Watch where are the actual touch targets for UDLR (arrow) keys. When I tap them where they should (roughly) be (according to the image in Readme, they all act like 'A' button. When I swipe right-left/bottom-up (or vice versa) the controls seem to emulate those buttons, but they are way to sensitive to control even Pokemon. I think they used to work on WatchOS3/iOS10.

Currently running 87163f6 compiled with Xcode 9.2 on iPhone X running iOS 10.2 and Apple Watch Series 1 running WatchOS 4.2

Missing 2 Files

Everything worked perfectly until it came time to build. Here are the errors:

Build input file cannot be found: '/Users/Username/Documents/GIOVANNI/gambatte/common/videolink/vfilters/maxsthq3x.cpp'

Build input file cannot be found: '/Users/Username/Documents/GIOVANNI/gambatte/libgambatte/src/statesaver.cpp'

I didn't move any files and only followed the directions carefully. Please help!

Outdated

Just completely outdated, and I seem to have got the code to work in the new versions but however it starts saying missing files, and i keep redownloading so...

Crashing/How to install roms

Hi there, I really like the idea of this app and I have been finagling with xcode to get the app to install on my iphone 6s and my apple watch series 3 and after a bunch of hours I did manage to get it installed. However, when I go to open the app on my phone or my watch the app automatically crashes. Any idea why that is happening? Also you mentioned a folder for dropping roms into to play the games but I don't know where said folder is. Help please?

This app could not be installed at this time.

First of all, thank you so much for sharing your efforts!

I followed the tutorial, and change the build settings Skip Install to 'NO' everywhere. Everything compiles fine, no errors. But when I try to run in the simulator (as series 2 or 3) I get the same error:
couldnotinstallapp

I googled the message but have been unable to determine what the problem is (I even went through the log directories and scanned the error/system logs but still didn't find a reason for the error. I cleaned, deleted the app off the simulator, rebooted, etc. multiple times, but I still get that message. Has anyone seen and solved this issue before?

Thanks.

Undefined symbols for architecture arm64

Undefined symbols for architecture arm64:
  "gambatte::Memory::nontrivial_write(unsigned int, unsigned int, unsigned long)", referenced from:
      gambatte::Memory::write(unsigned int, unsigned int, unsigned long) in interrupter.o
ld: symbol(s) not found for architecture arm64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

How do I clone submodules without error (in terminal)??

I have done everything I was instructed to on the redmondpie tutorial but when I actually try to clone submodules I get the error below. What do I do to fix this and actually clone submodules?? Your help would be greatly appreciated! :)
screen shot 2018-01-15 at 11 53 32 am

Save game

I can’t save the game! If I save in game and I close and reopen the app I must restart the game

Giovanni roms crash at opening

I can’t open the roms, they crash or get stuck on the loading screen. Here’s my crash log.

"bug_type":"109","os_version":"Watch OS 6.3 (17U208)","build_version":"1","timestamp":"2021-04-19 15:29:47.00 -0500","app_name":"giovanni WatchKit Extension","bundleID":"com.kappelers.watchkitapp.watchkitextension","incident_id":"84B524FA-C0A9-44C1-9061-62A55B0CEC3D","name":"giovanni WatchKit Extension","is_first_party":0,"app_version":"1.0","share_with_app_devs":1,"slice_uuid":"a87de87c-814d-3237-a80e-7d7bcf3c2e93","adam_id":0}
Incident Identifier: 84B524FA-C0A9-44C1-9061-62A55B0CEC3D
CrashReporter Key: b571e445ede34a281ff935bfa2a703d81f0e2891
Hardware Model: Watch2,4
Process: giovanni WatchKit Extension [522]
Path: /private/var/containers/Bundle/Application/6B138D4D-B99A-4CFE-A72D-9C5D7FAC41A5/giovanni_watchOS.app/PlugIns/giovanni WatchKit Extension.appex/giovanni WatchKit Extension
Identifier: com.kappelers.watchkitapp.watchkitextension
Version: 1 (1.0)
Code Type: ARM (Native)
Role: Foreground
Parent Process: launchd [1]
Coalition: com.kappelers.watchkitapp.watchkitextension [450]

Date/Time: 2021-04-19 15:29:41.9943 -0500
Launch Time: 2021-04-19 15:29:31.0000 -0500
OS Version: Watch OS 6.3 (17U208)
Release Type: User
Baseband Version: n/a
Report Version: 104

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Subtype: KERN_INVALID_ADDRESS at 0x15fcc000
VM Region Info: 0x15fcc000 is not in any region. Bytes after previous region: 1 Bytes before following region: 212992
REGION TYPE START - END [ VSIZE] PRT/MAX SHRMOD REGION DETAIL
MALLOC_LARGE 15fc4000-15fcc000 [ 32K] rw-/rwx SM=PRV
---> GAP OF 0x34000 BYTES
MALLOC_SMALL 16000000-16800000 [ 8192K] rw-/rwx SM=PRV

Termination Signal: Segmentation fault: 11
Termination Reason: Namespace SIGNAL, Code 0xb
Terminating Process: exc handler [522]
Triggered by Thread: 8

Thread 0 name: Dispatch queue: com.apple.main-thread
Thread 0:
0 BaseBoard 0x4cd82340 0x4cd55000 + 185152
1 BaseBoard 0x4cd5c6ae 0x4cd55000 + 30382
2 UIKitCore 0x619a156a 0x61531000 + 4654442
3 UIKitCore 0x61567526 0x61531000 + 222502
4 UIKitCore 0x616b2716 0x61531000 + 1578774
5 UIKitCore 0x61562ad8 0x61531000 + 203480
6 UIKitCore 0x616b3c26 0x61531000 + 1584166
7 UIKitCore 0x616b3c78 0x61531000 + 1584248
8 CoreFoundation 0x49cd7e92 0x49c12000 + 810642
9 CoreFoundation 0x49c13bb8 0x49c12000 + 7096
10 UIKitCore 0x616b3b80 0x61531000 + 1584000
11 UIKitCore 0x616b3f14 0x61531000 + 1584916
12 UIKitCore 0x61a51698 0x61531000 + 5375640
13 UIKitCore 0x61a51858 0x61531000 + 5376088
14 UIKitCore 0x61d35e9a 0x61531000 + 8408730
15 UIKitCore 0x61d3602c 0x61531000 + 8409132
16 UIKitCore 0x617e95d2 0x61531000 + 2852306
17 UIKitCore 0x617e9262 0x61531000 + 2851426
18 UIKitCore 0x617e9b9c 0x61531000 + 2853788
19 UIKitCore 0x617ea00c 0x61531000 + 2854924
20 UIKitCore 0x617e9b3e 0x61531000 + 2853694
21 UIKitCore 0x617ed3b6 0x61531000 + 2868150
22 UIKitCore 0x617e86b0 0x61531000 + 2848432
23 UIKitCore 0x617dffb6 0x61531000 + 2813878
24 UIKitCore 0x617e7b10 0x61531000 + 2845456
25 UIKitCore 0x61869664 0x61531000 + 3376740
26 UIKitCore 0x61869884 0x61531000 + 3377284
27 UIKitCore 0x61d40a60 0x61531000 + 8452704
28 UIKitCore 0x616bb83c 0x61531000 + 1615932
29 UIKitCore 0x620b19da 0x61531000 + 12061146
30 UIKitCore 0x620b1cde 0x61531000 + 12061918
31 UIKitCore 0x61e11410 0x61531000 + 9307152
32 UIKitCore 0x61e1129e 0x61531000 + 9306782
33 UIKitCore 0x61e1124a 0x61531000 + 9306698
34 UIKitCore 0x616bb5c4 0x61531000 + 1615300
35 UIKitCore 0x616bb016 0x61531000 + 1613846
36 UIKitCore 0x616bac12 0x61531000 + 1612818
37 PepperUICore 0x53fc7954 0x53e94000 + 1259860
38 UIKitCore 0x618808f6 0x61531000 + 3471606
39 UIKitCore 0x61866648 0x61531000 + 3364424
40 UIKitCore 0x61880c50 0x61531000 + 3472464
41 UIKitCore 0x6188c458 0x61531000 + 3519576
42 UIKitCore 0x618895a4 0x61531000 + 3507620
43 UIKitCore 0x620b054c 0x61531000 + 12055884
44 UIKitCore 0x6208b0c8 0x61531000 + 11903176
45 UIKitCore 0x6208a1be 0x61531000 + 11899326
46 UIKitCore 0x62087e9e 0x61531000 + 11890334
47 UIKitCore 0x620b1a36 0x61531000 + 12061238
48 UIKitCore 0x620b1ee0 0x61531000 + 12062432
49 UIKitCore 0x6208416c 0x61531000 + 11874668
50 UIKitCore 0x620b22ba 0x61531000 + 12063418
51 UIKitCore 0x62083e16 0x61531000 + 11873814
52 UIKitCore 0x62083956 0x61531000 + 11872598
53 UIKitCore 0x61886186 0x61531000 + 3494278
54 UIKitCore 0x6188cda4 0x61531000 + 3521956
55 UIKitCore 0x61929100 0x61531000 + 4161792
56 UIKitCore 0x6188cd48 0x61531000 + 3521864
57 UIKitCore 0x620b0468 0x61531000 + 12055656
58 UIKitCore 0x6188cc14 0x61531000 + 3521556
59 UIKitCore 0x617abcca 0x61531000 + 2600138
60 UIKitCore 0x61d0ee22 0x61531000 + 8248866
61 UIKitCore 0x61d01116 0x61531000 + 8192278
62 UIKitCore 0x61d28822 0x61531000 + 8353826
63 CoreFoundation 0x49c960bc 0x49c12000 + 540860
64 CoreFoundation 0x49c91eee 0x49c12000 + 524014
65 CoreFoundation 0x49c922f6 0x49c12000 + 525046
66 CoreFoundation 0x49c91cec 0x49c12000 + 523500
67 GraphicsServices 0x4cafbd3c 0x4caf9000 + 11580
68 UIKitCore 0x61d0736e 0x61531000 + 8217454
69 libxpc.dylib 0x49a33f0c 0x49a16000 + 122636
70 libxpc.dylib 0x49a24e8c 0x49a16000 + 61068
71 libxpc.dylib 0x49a26ae8 0x49a16000 + 68328
72 Foundation 0x4a5a7090 0x4a56d000 + 237712
73 PlugInKit 0x51780392 0x5176e000 + 74642
74 WatchKit 0x5911faf0 0x59105000 + 109296
75 libdyld.dylib 0x4984d7b2 0x4984a000 + 14258

Thread 1:
0 libsystem_pthread.dylib 0x499ebf24 0x499e2000 + 40740

Thread 2:
0 libsystem_pthread.dylib 0x499ebf24 0x499e2000 + 40740

Thread 3:
0 libsystem_pthread.dylib 0x499ebf24 0x499e2000 + 40740

Thread 4 name: com.apple.uikit.eventfetch-thread
Thread 4:
0 libsystem_kernel.dylib 0x499576a8 0x49952000 + 22184
1 libsystem_kernel.dylib 0x49956d7a 0x49952000 + 19834
2 CoreFoundation 0x49c96390 0x49c12000 + 541584
3 CoreFoundation 0x49c9238a 0x49c12000 + 525194
4 CoreFoundation 0x49c91cec 0x49c12000 + 523500
5 Foundation 0x4a573a58 0x4a56d000 + 27224
6 Foundation 0x4a573974 0x4a56d000 + 26996
7 UIKitCore 0x61d85f18 0x61531000 + 8736536
8 Foundation 0x4a674308 0x4a56d000 + 1078024
9 libsystem_pthread.dylib 0x499e5236 0x499e2000 + 12854
10 libsystem_pthread.dylib 0x499ebf50 0x499e2000 + 40784

Thread 5:
0 libsystem_pthread.dylib 0x499ebf24 0x499e2000 + 40740

Thread 6:
0 libsystem_pthread.dylib 0x499ebf24 0x499e2000 + 40740

Thread 7:
0 libsystem_pthread.dylib 0x499ebf24 0x499e2000 + 40740

Thread 8 name: Giovanni Game Core
Thread 8 Crashed:
0 libsystem_platform.dylib 0x499e00c4 0x499da000 + 24772
1 Foundation 0x4a65e16e 0x4a56d000 + 987502
2 libswiftFoundation.dylib 0x69af2854 0x69a15000 + 907348
3 libswiftFoundation.dylib 0x69a33d62 0x69a15000 + 126306
4 libswiftFoundation.dylib 0x69af4e3e 0x69a15000 + 917054
5 libswiftFoundation.dylib 0x69af4eae 0x69a15000 + 917166
6 giovanni WatchKit Extension 0x003aa0c6 0x390000 + 106694
7 giovanni WatchKit Extension 0x003a9f52 0x390000 + 106322
8 giovanni WatchKit Extension 0x003a20fc 0x390000 + 73980
9 giovanni WatchKit Extension 0x003a14a4 0x390000 + 70820
10 giovanni WatchKit Extension 0x003a14d8 0x390000 + 70872
11 Gambatte_watchOS 0x00449760 0x40c000 + 251744
12 Foundation 0x4a674308 0x4a56d000 + 1078024
13 libsystem_pthread.dylib 0x499e5236 0x499e2000 + 12854
14 libsystem_pthread.dylib 0x499ebf50 0x499e2000 + 40784

Thread 8 crashed with ARM Thread State (32-bit):
r0: 0x17200000 r1: 0x15fcc000 r2: 0x00037fc0 r3: 0x00000040
r4: 0x15fcc020 r5: 0x15fac000 r6: 0x17200000 r7: 0x3f3abb98
r8: 0x00058000 r9: 0x01e8f6c2 r10: 0x15d9dd50 r11: 0x00000000
ip: 0x17220000 sp: 0x3f3abb94 lr: 0x17220020 pc: 0x499e00c4
cpsr: 0x20000030

Binary Images:
0x390000 - 0x3affff giovanni WatchKit Extension armv7k /var/containers/Bundle/Application/6B138D4D-B99A-4CFE-A72D-9C5D7FAC41A5/giovanni_watchOS.app/PlugIns/giovanni WatchKit Extension.appex/giovanni WatchKit Extension
0x40c000 - 0x467fff Gambatte_watchOS armv7k <5d6b1adb7a8833bdac76654c19967a5e> /var/containers/Bundle/Application/6B138D4D-B99A-4CFE-A72D-9C5D7FAC41A5/giovanni_watchOS.app/PlugIns/giovanni WatchKit Extension.appex/Frameworks/Gambatte_watchOS.framework/Gambatte_watchOS
0x580000 - 0x58ffff libobjc-trampolines.dylib armv7k <5702b1ecc5ae3cd1b024875abc534127> /usr/lib/libobjc-trampolines.dylib
0x600000 - 0x65bfff dyld armv7k /usr/lib/dyld
0x49702000 - 0x49705fff libSystem.B.dylib armv7k <6f20b81ed8a33151b3de461062e5857e> /usr/lib/libSystem.B.dylib
0x49706000 - 0x49749fff libc++.1.dylib armv7k <96fa656b09b03a969859c7cff21e31b1> /usr/lib/libc++.1.dylib
0x4974a000 - 0x4975dfff libc++abi.dylib armv7k /usr/lib/libc++abi.dylib
0x4975e000 - 0x49789fff libobjc.A.dylib armv7k <3b18bed4b56f347c983356f7df75af97> /usr/lib/libobjc.A.dylib
0x4978a000 - 0x49791fff libcache.dylib armv7k <81412bca56fd3d8cb39e1e26e99c8081> /usr/lib/system/libcache.dylib
0x49792000 - 0x4979dfff libcommonCrypto.dylib armv7k /usr/lib/system/libcommonCrypto.dylib
0x4979e000 - 0x497a5fff libcompiler_rt.dylib armv7k <357eb7b236d838f982c53d57a34adfde> /usr/lib/system/libcompiler_rt.dylib
0x497a6000 - 0x497adfff libcopyfile.dylib armv7k /usr/lib/system/libcopyfile.dylib
0x497ae000 - 0x4980dfff libcorecrypto.dylib armv7k <92ee4c3d9be63fe8ac3e0789f9f376b7> /usr/lib/system/libcorecrypto.dylib
0x4980e000 - 0x49849fff libdispatch.dylib armv7k /usr/lib/system/libdispatch.dylib
0x4984a000 - 0x49875fff libdyld.dylib armv7k /usr/lib/system/libdyld.dylib
0x49876000 - 0x49879fff liblaunch.dylib armv7k <908eb9ed054c34d4895967fc6a5ac29f> /usr/lib/system/liblaunch.dylib
0x4987a000 - 0x49881fff libmacho.dylib armv7k <34b29d6bbfa13d078e45acaa881a7d12> /usr/lib/system/libmacho.dylib
0x49882000 - 0x49885fff libremovefile.dylib armv7k <66d9b3e777003c389579898a9ff30ac2> /usr/lib/system/libremovefile.dylib
0x49886000 - 0x49899fff libsystem_asl.dylib armv7k <32e2de5aea9838109f3e60129458cfab> /usr/lib/system/libsystem_asl.dylib
0x4989a000 - 0x4989dfff libsystem_blocks.dylib armv7k <532253b8eb713a56bcc7959e328018bd> /usr/lib/system/libsystem_blocks.dylib
0x4989e000 - 0x49901fff libsystem_c.dylib armv7k <5d01fc49cba83a32a261b805e9c4be2f> /usr/lib/system/libsystem_c.dylib
0x49902000 - 0x49905fff libsystem_configuration.dylib armv7k <8cfc504b7df43b12b19122f8ffb70870> /usr/lib/system/libsystem_configuration.dylib
0x49906000 - 0x4990dfff libsystem_containermanager.dylib armv7k <9af59a446ab732048de5fba0b2394e1f> /usr/lib/system/libsystem_containermanager.dylib
0x4990e000 - 0x49911fff libsystem_coreservices.dylib armv7k /usr/lib/system/libsystem_coreservices.dylib
0x49912000 - 0x49919fff libsystem_darwin.dylib armv7k /usr/lib/system/libsystem_darwin.dylib
0x4991a000 - 0x49921fff libsystem_dnssd.dylib armv7k <630e628f61bb39558cd2b030690ec127> /usr/lib/system/libsystem_dnssd.dylib
0x49922000 - 0x49951fff libsystem_info.dylib armv7k <005447921ade3599b5e3901b47d1fcef> /usr/lib/system/libsystem_info.dylib
0x49952000 - 0x49979fff libsystem_kernel.dylib armv7k /usr/lib/system/libsystem_kernel.dylib
0x4997a000 - 0x499a9fff libsystem_m.dylib armv7k <649706a8696d358594e7cdf7b8f66a34> /usr/lib/system/libsystem_m.dylib
0x499aa000 - 0x499bdfff libsystem_malloc.dylib armv7k <37d7a2546ff33824ba6f430cd6063e03> /usr/lib/system/libsystem_malloc.dylib
0x499be000 - 0x499cdfff libsystem_networkextension.dylib armv7k <9fd77bd47cae3e62be7015f36f0389c6> /usr/lib/system/libsystem_networkextension.dylib
0x499ce000 - 0x499d9fff libsystem_notify.dylib armv7k <11d261d660053c16b27836740fccc712> /usr/lib/system/libsystem_notify.dylib
0x499da000 - 0x499e1fff libsystem_platform.dylib armv7k <11e4189c6770369297452335ef690ad1> /usr/lib/system/libsystem_platform.dylib
0x499e2000 - 0x499edfff libsystem_pthread.dylib armv7k <1ed6791f15f6319dae5ccfc02bd73b98> /usr/lib/system/libsystem_pthread.dylib
0x499ee000 - 0x499f1fff libsystem_sandbox.dylib armv7k <0a78de34b56732369e0aa91aba6d2682> /usr/lib/system/libsystem_sandbox.dylib
0x499f2000 - 0x499f9fff libsystem_symptoms.dylib armv7k <378eba71a0ec3149afe39abc517c9568> /usr/lib/system/libsystem_symptoms.dylib
0x499fa000 - 0x49a0dfff libsystem_trace.dylib armv7k <1c9312458d4a3724be17e2454722edc0> /usr/lib/system/libsystem_trace.dylib
0x49a0e000 - 0x49a15fff libunwind.dylib armv7k <2ebd1743cf0135f69994e557a226fb98> /usr/lib/system/libunwind.dylib
0x49a16000 - 0x49a3dfff libxpc.dylib armv7k <9c6757f7a32a301eaa8836b8efc73cea> /usr/lib/system/libxpc.dylib
0x49a3e000 - 0x49c01fff libicucore.A.dylib armv7k /usr/lib/libicucore.A.dylib
0x49c02000 - 0x49c11fff libz.1.dylib armv7k /usr/lib/libz.1.dylib
0x49c12000 - 0x49fbafff CoreFoundation armv7k <0c30f6066cd93073a07d198daa61d73d> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x49fbb000 - 0x49fbefff libenergytrace.dylib armv7k /usr/lib/libenergytrace.dylib
0x49fbf000 - 0x4a045fff IOKit armv7k <5d25c5807378378f8cde8affbec05e48> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x4a046000 - 0x4a051fff libbz2.1.0.dylib armv7k <7cb2ce1d1f86359f8be8666b0aee656e> /usr/lib/libbz2.1.0.dylib
0x4a052000 - 0x4a069fff liblzma.5.dylib armv7k <60dd83d5ec13394ea0d10a9ce6f2da0f> /usr/lib/liblzma.5.dylib
0x4a06a000 - 0x4a19dfff libsqlite3.dylib armv7k <1880383844d637cc884aa6fb35fe56ef> /usr/lib/libsqlite3.dylib
0x4a19e000 - 0x4a251fff libxml2.2.dylib armv7k <28596b08299b35c4aec1ba8a03443bd0> /usr/lib/libxml2.2.dylib
0x4a252000 - 0x4a285fff libMobileGestalt.dylib armv7k <99a01f28efcf31b196acaa5788a9ee6e> /usr/lib/libMobileGestalt.dylib
0x4a286000 - 0x4a56cfff CFNetwork armv7k <21b8bb4c24eb3276b4253cf250306ba8> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x4a56d000 - 0x4a7cdfff Foundation armv7k <23fa5402d18b30d6b7bbd74632a997da> /System/Library/Frameworks/Foundation.framework/Foundation
0x4a7ce000 - 0x4a8cafff Security armv7k /System/Library/Frameworks/Security.framework/Security
0x4a8cb000 - 0x4a922fff SystemConfiguration armv7k /System/Library/PrivateFrameworks/SystemConfiguration.framework/SystemConfiguration
0x4a923000 - 0x4a94efff libCRFSuite.dylib armv7k <6541fb4143dd3f88ab4c5555c91b6037> /usr/lib/libCRFSuite.dylib
0x4a94f000 - 0x4a9aafff libarchive.2.dylib armv7k /usr/lib/libarchive.2.dylib
0x4aa46000 - 0x4aa59fff libcoretls.dylib armv7k /usr/lib/libcoretls.dylib
0x4aa5a000 - 0x4aa5dfff libcoretls_cfhelpers.dylib armv7k <72365fcd0b5e3448a2ff766ac3156d40> /usr/lib/libcoretls_cfhelpers.dylib
0x4aa5e000 - 0x4aa61fff liblangid.dylib armv7k <9b4bf86707483e858c3dfdc83971b7e2> /usr/lib/liblangid.dylib
0x4aa62000 - 0x4ae62fff libnetwork.dylib armv7k <07585d4b49d53c65a2450fc388897d52> /usr/lib/libnetwork.dylib
0x4aeb3000 - 0x4af96fff libBLAS.dylib armv7k /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x4af97000 - 0x4b242fff libLAPACK.dylib armv7k /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x4b243000 - 0x4b49efff vImage armv7k /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x4b49f000 - 0x4b4b2fff libSparseBLAS.dylib armv7k <2bb1563398f4366db77a14983f882c51> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x4b4b3000 - 0x4b4c6fff libvMisc.dylib armv7k <0477ad564f943eabbf08daca543e79d7> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x4b4c7000 - 0x4b736fff libBNNS.dylib armv7k <5db4074954c13ed3b9f35919c569a73c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x4b737000 - 0x4b74afff libLinearAlgebra.dylib armv7k /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x4b74b000 - 0x4b752fff libQuadrature.dylib armv7k <79415592bf00370f901ca4ec39f0dd0f> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x4b753000 - 0x4b7a6fff libSparse.dylib armv7k <88d4c58750d8395aa5cd059259f5cb8a> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x4b7a7000 - 0x4b812fff libvDSP.dylib armv7k <5c6c24bb7eef3e409bf28d65eb463903> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x4b813000 - 0x4b816fff vecLib armv7k <10e9d4ae009e33ada38f7f0747a17f9b> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x4b817000 - 0x4b81afff Accelerate armv7k /System/Library/Frameworks/Accelerate.framework/Accelerate
0x4b81b000 - 0x4b829fff IOSurface armv7k <8155f6438bad3a45b8789b70734fa9fe> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x4b82a000 - 0x4bd21fff CoreGraphics armv7k <541efee8de9636eab5470ec3c2e0bd33> /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x4bd22000 - 0x4bd35fff libcompression.dylib armv7k /usr/lib/libcompression.dylib
0x4bd36000 - 0x4bd39fff MobileCoreServices armv7k <7c6108a7900e37518f3911b98bfa3c73> /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x4caf9000 - 0x4cb00fff GraphicsServices armv7k /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x4cb01000 - 0x4cb04fff IOSurfaceAccelerator armv7k <1f4abbe7b3483b00a55792a9eb8a4f01> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x4cb05000 - 0x4cb3cfff AppleJPEG armv7k <0ed8e27f685c3ab4aaf02c8e9f6e379e> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x4cb3d000 - 0x4cd54fff ImageIO armv7k <86d845073fc4388ca96830e1b06cc9a4> /System/Library/Frameworks/ImageIO.framework/ImageIO
0x4cd55000 - 0x4cdc4fff BaseBoard armv7k <9e83656a7fb13c46bee45cfbaea1e0eb> /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x4cdc5000 - 0x4cdd2fff AssertionServices armv7k <83bb99edf1bd356b8d0311f47edadef5> /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x4cdd3000 - 0x4cddafff CorePhoneNumbers armv7k <00c5c8b50d763d80bd51ebaf5bd2cf1b> /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x4cddb000 - 0x4ce0ffff AppSupport armv7k <7c4dc66c06a93e799d21060035b310f9> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x4ce10000 - 0x4ce7afff libTelephonyUtilDynamic.dylib armv7k <567cec0326023788bbd6b0df870ed81e> /usr/lib/libTelephonyUtilDynamic.dylib
0x4ce7b000 - 0x4ce8afff CrashReporterSupport armv7k <7653e56880513756919c42ed3df2c14c> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x4ce8b000 - 0x4ce9ffff ProtocolBuffer armv7k /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x4cea0000 - 0x4cea7fff AggregateDictionary armv7k /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x4cea8000 - 0x4ced1fff MobileKeyBag armv7k <11cb90cad4bc317788ef37854dabb0ac> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x4ced2000 - 0x4ceddfff liblockdown.dylib armv7k /usr/lib/liblockdown.dylib
0x4cede000 - 0x4cf26fff BackBoardServices armv7k /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x4cf27000 - 0x4cf8dfff FrontBoardServices armv7k <09aeeab11fed3942a7ccb53b9b76289e> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x4cf8e000 - 0x4cfa7fff CommonUtilities armv7k <5f92dba01e313f4694f611ba6157b9fe> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x4cfa8000 - 0x4cfecfff SpringBoardServices armv7k <1eeac6d1e7ea3c0fbb51cd952b25efc4> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x4cfed000 - 0x4cff4fff TCC armv7k <03a2971217723b6baba3d0846f411be7> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x4cff5000 - 0x4d007fff PowerLog armv7k <4b3be34ba9333031bad0d53027256293> /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x4d008000 - 0x4d250fff CoreData armv7k <69f0a702852f34cdb5051cdaa5b77753> /System/Library/Frameworks/CoreData.framework/CoreData
0x4d251000 - 0x4d258fff libcupolicy.dylib armv7k /usr/lib/libcupolicy.dylib
0x4d259000 - 0x4d306fff CoreTelephony armv7k <263401a728663e768fc4b43477298d2f> /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x4d307000 - 0x4d322fff AppleSauce armv7k /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x4d323000 - 0x4d36bfff Accounts armv7k /System/Library/Frameworks/Accounts.framework/Accounts
0x4d36c000 - 0x4d373fff IOAccelerator armv7k /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x4d374000 - 0x4d38ffff CoreAnalytics armv7k <2689cb3a2a8c3bb6812c8852b931f130> /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x4d390000 - 0x4d397fff libCoreVMClient.dylib armv7k /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x4d398000 - 0x4d3bffff PersistentConnection armv7k <154eabb9db45395680e75947e195224e> /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x4d3c0000 - 0x4d3cffff libmis.dylib armv7k <9017f8a698a0328a9a95c04d86c10e0c> /usr/lib/libmis.dylib
0x4d3d0000 - 0x4d3d3fff libCVMSPluginSupport.dylib armv7k /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x4d3d4000 - 0x4d4b7fff ManagedConfiguration armv7k <2473fb40b815315fbc9af709c2586bc0> /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x4d4b8000 - 0x4d4effff libGLImage.dylib armv7k <4579feb261f632d49f17b1355032fef0> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x4d4f0000 - 0x4d577fff APFS armv7k /System/Library/PrivateFrameworks/APFS.framework/APFS
0x4d578000 - 0x4d587fff libprotobuf-lite.dylib armv7k /usr/lib/libprotobuf-lite.dylib
0x4d588000 - 0x4d5cffff libprotobuf.dylib armv7k <1ee71b08f7253ad4a63064466f7848e0> /usr/lib/libprotobuf.dylib
0x4d5d0000 - 0x4d5d7fff libGFXShared.dylib armv7k /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x4d5d8000 - 0x4d5dffff IOMobileFramebuffer armv7k /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x4d5e0000 - 0x4d5e3fff libCTGreenTeaLogger.dylib armv7k /usr/lib/libCTGreenTeaLogger.dylib
0x4d5e4000 - 0x4d5eefff OpenGLES armv7k /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x4d5ef000 - 0x4d933fff libAWDSupportFramework.dylib armv7k <2061ac87496e33369d6c1c0038ebf716> /usr/lib/libAWDSupportFramework.dylib
0x4d934000 - 0x4d957fff CoreVideo armv7k /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x4d958000 - 0x4d993fff WirelessDiagnostics armv7k <94e63522db4d37eca25302a91a68479a> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x4d994000 - 0x4dd50fff CoreAudio armv7k /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x4dd51000 - 0x4dd58fff libCoreFSCache.dylib armv7k /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x4dd59000 - 0x4dd6efff IntlPreferences armv7k /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x4dd6f000 - 0x4de3efff CoreMedia armv7k <3553de27a45b39adabc9502f78709488> /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x4de3f000 - 0x4dec0fff Metal armv7k <994c8cc84fd133fa9938a0f350d84de0> /System/Library/Frameworks/Metal.framework/Metal
0x4dec1000 - 0x4dfe4fff libFontParser.dylib armv7k /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x4dfe5000 - 0x4dfe8fff FontServices armv7k <0ac7631bdb593b7ab8df79a5e51d6920> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x4dfe9000 - 0x4e136fff CoreText armv7k /System/Library/Frameworks/CoreText.framework/CoreText
0x4e137000 - 0x4e1c3fff CoreBrightness armv7k <306759abe1613dfeb56ca71b4fe17480> /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x4e1c4000 - 0x4e3c4fff QuartzCore armv7k <66208ac8dca5369795e404b862bbe606> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x4e3c5000 - 0x4e3cffff RTCReporting armv7k <1a5c2660163d325988ff520ef44ef0fb> /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x4e3d0000 - 0x4e400fff CoreBluetooth armv7k <39f4e10c86cd3122be18c1e4d2264ea1> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x4e401000 - 0x4e40bfff libAudioStatistics.dylib armv7k /usr/lib/libAudioStatistics.dylib
0x4e40c000 - 0x4e57cfff AudioToolbox armv7k <9c8e484f718232a3ab2ec41d7f3512f1> /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x4e57d000 - 0x4e730fff ColorSync armv7k /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x4e731000 - 0x4e7b8fff VideoToolbox armv7k <33723243f0293320a1714b7017237bc8> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x4e7b9000 - 0x4e8a8fff libiconv.2.dylib armv7k /usr/lib/libiconv.2.dylib
0x4e8a9000 - 0x4e9f4fff libFosl_dynamic.dylib armv7k /usr/lib/libFosl_dynamic.dylib
0x4e9f5000 - 0x4ec36fff CoreImage armv7k <44079c66f103394fbb77fc4c8377e511> /System/Library/Frameworks/CoreImage.framework/CoreImage
0x4ec5a000 - 0x4ec9cfff CoreLocationProtobuf armv7k /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x4ec9d000 - 0x4f923fff GeoServices armv7k /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x4f924000 - 0x4f95dfff StreamingZip armv7k <343afd10770d3058b42b298fc17f87a4> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x4f95e000 - 0x4f9c8fff CoreLocation armv7k <2bcd173760233620a7d678262ac56afa> /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x4f9c9000 - 0x4f9dffff MobileAsset armv7k /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x4f9e0000 - 0x4f9effff CoreEmoji armv7k <6b6b0bdcd7f3349c847859ab059b7e11> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x4f9f0000 - 0x4f9f3fff PhoneNumbers armv7k <3d74beaaf9963be49e4460678552b5c4> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x4f9f4000 - 0x4fa2bfff Lexicon armv7k <0bd0be63629c3bc39144e99533545df7> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x4fa2c000 - 0x4fae7fff LanguageModeling armv7k /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x4fae8000 - 0x50067fff JavaScriptCore armv7k <2d61ee6eafbc326fb38862330771ff02> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x50068000 - 0x513fcfff WebCore armv7k /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x513fd000 - 0x5140efff TextureIO armv7k <8475f8cf49eb308ba6ebe3383fd720bc> /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x5140f000 - 0x51426fff libAccessibility.dylib armv7k <3511843e33e4399381b6630e71ab5f0a> /usr/lib/libAccessibility.dylib
0x5144b000 - 0x5145afff AppleFSCompression armv7k <41d823cabe3c3d5da083fcc26ad34c15> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x5145b000 - 0x514fafff CoreUI armv7k /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x514fb000 - 0x51525fff DataDetectorsCore armv7k <8ec897692c40302fb2352bd70d3b4669> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x51526000 - 0x51582fff TextInput armv7k <522816adfd4032b990dc3366e4ae4ccb> /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x51583000 - 0x515acfff UserNotifications armv7k /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x5164d000 - 0x5165bfff HangTracer armv7k <455fc4e3839339d28c5c97cdfcbd9afb> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x5165c000 - 0x5169dfff PhysicsKit armv7k <855da5db08853497b383b67ff19d017d> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x5169e000 - 0x51769fff UIFoundation armv7k <48b83590943938fa82d7e8a356d07d08> /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x5176a000 - 0x5176dfff UIKit armv7k /System/Library/Frameworks/UIKit.framework/UIKit
0x5176e000 - 0x51792fff PlugInKit armv7k <94d08dc79d2836adac020bf1b088548c> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x51793000 - 0x5179dfff SymptomDiagnosticReporter armv7k <44058f48aed3370f862a7b5e61cb5c65> /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x5179e000 - 0x51803fff ContactsFoundation armv7k /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x51804000 - 0x5182cfff DataAccessExpress armv7k /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x5182d000 - 0x518b0fff AddressBookLegacy armv7k /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x518b1000 - 0x519bdfff Network armv7k /System/Library/Frameworks/Network.framework/Network
0x519be000 - 0x519d5fff NetworkStatistics armv7k /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x519d6000 - 0x51a1efff ProtectedCloudStorage armv7k /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x51a1f000 - 0x51f52fff MediaToolbox armv7k /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x51f53000 - 0x520ecfff CoreMotion armv7k <4affc4e840f635838866083ebf6cfa6a> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x520ed000 - 0x52368fff Celestial armv7k <77e7dab2f05838968b3635d2f8499916> /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x52369000 - 0x52377fff IntentsFoundation armv7k <1c738ed4e7d23478836598df90005415> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x52378000 - 0x5239ffff libtidy.A.dylib armv7k <4573cbe95dce301bac180a0f23d1bf78> /usr/lib/libtidy.A.dylib
0x523a0000 - 0x526fffff Intents armv7k <0e40b439ebc53d468daf55ce5ab8e08f> /System/Library/Frameworks/Intents.framework/Intents
0x52700000 - 0x52751fff IMFoundation armv7k <5811a74a7d1c3572bf2485f8831ee55c> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x52752000 - 0x52891fff CloudKit armv7k <4f3fbec6a99c3c33bb474c987830e402> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x52892000 - 0x5289cfff AppleIDAuthSupport armv7k <1725be821cef374d93776a16e57faaa2> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x5289d000 - 0x5296cfff AVFAudio armv7k /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x5296d000 - 0x529d3fff AuthKit armv7k /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x529d4000 - 0x52a3ffff Quagga armv7k <1d4a232a117f33fabd27eb9afa7e467f> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x52a40000 - 0x52bcbfff AVFoundation armv7k /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x52bcc000 - 0x52bdffff libresolv.9.dylib armv7k <21367811317e3fa7ad306151cdafca3e> /usr/lib/libresolv.9.dylib
0x52dc4000 - 0x52dc7fff Marco armv7k <6c1fee8ad3a43d8799f663367fd31252> /System/Library/PrivateFrameworks/Marco.framework/Marco
0x52dc8000 - 0x52dedfff vCard armv7k <734e83bb8f77347f80b8a5a46fcb0bfc> /System/Library/PrivateFrameworks/vCard.framework/vCard
0x52dee000 - 0x52ee3fff Contacts armv7k <5b7ece658cc13aaba79972c314bbfcd8> /System/Library/Frameworks/Contacts.framework/Contacts
0x52efe000 - 0x52f0ffff Engram armv7k /System/Library/PrivateFrameworks/Engram.framework/Engram
0x52f10000 - 0x5301bfff IDSFoundation armv7k <51348e74422736e2a4d456b92291d8bc> /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x5301c000 - 0x530e8fff IDS armv7k <2b800d22c91d36078f082c61658a7fc1> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x530e9000 - 0x53110fff EAP8021X armv7k /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x53111000 - 0x53154fff MobileWiFi armv7k /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x53372000 - 0x53379fff CommonAuth armv7k <5c821900379f3fabaf6e70d1dfa535f5> /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x5337a000 - 0x53393fff ApplePushService armv7k <7849b54a83e63c3dbb093f9311da33b3> /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x53394000 - 0x53397fff OAuth armv7k <16564c842f2a3705a52d3262c0c4dd7b> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x53398000 - 0x534cefff CoreUtils armv7k <17a336fecae23d1c98b6bac3e5b9476a> /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x534cf000 - 0x53552fff AccountsDaemon armv7k <0770db5bc88d3b4baa848e411bde53ca> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x53553000 - 0x5355efff AppleIDSSOAuthentication armv7k <1e1440f7608d3b79b70a352a045e04dd> /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x5355f000 - 0x535c9fff AppleAccount armv7k /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x535ca000 - 0x535fbfff MediaServices armv7k /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x535fc000 - 0x53603fff NanoPreferencesSync armv7k <68573d399eb936be93dfd3e423ac9a16> /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x53604000 - 0x5364cfff CarouselServices armv7k /System/Library/PrivateFrameworks/CarouselServices.framework/CarouselServices
0x5364d000 - 0x537fffff MediaRemote armv7k <8d688446a82f3b11b5433d5d79d44f6b> /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x53800000 - 0x53862fff SAObjects armv7k /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x53863000 - 0x5386efff MobileIcons armv7k <538d4d77a933304faa056035f30c9882> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x5386f000 - 0x53cd6fff SiriTTS armv7k <2d1843eed10f3bf79754f239a1e8e890> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x53d0f000 - 0x53d46fff VoiceServices armv7k <5355a42d0fad3c8e84adfd663ead2858> /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x53d47000 - 0x53e58fff AssistantServices armv7k <0f49e9e387473e5a92790b7e399833e9> /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x53e59000 - 0x53e73fff EmojiFoundation armv7k <52cee25809af3fc8b807d9a561484fda> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x53e94000 - 0x54007fff PepperUICore armv7k <83f61ee5fa7537c993927ed06bd654c1> /System/Library/PrivateFrameworks/PepperUICore.framework/PepperUICore
0x54008000 - 0x5402dfff GLKit armv7k /System/Library/Frameworks/GLKit.framework/GLKit
0x54077000 - 0x5408efff libnetworkextension.dylib armv7k <1f5add9851513a7ca21a3db7e4be1046> /usr/lib/libnetworkextension.dylib
0x540b0000 - 0x5427ffff NetworkExtension armv7k /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x54280000 - 0x542a7fff Bom armv7k /System/Library/PrivateFrameworks/Bom.framework/Bom
0x542f4000 - 0x5434ffff NanoRegistry armv7k <5bc18cd312583b699500e182c16abfad> /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x5445c000 - 0x5446bfff MobileBluetooth armv7k <038430958ad03657b7b438ba5c82430f> /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x5446c000 - 0x5446ffff CommunicationsFilter armv7k /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x54470000 - 0x5447efff BluetoothManager armv7k <10c380fd17b93b8ca37fc14c395f732c> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x5447f000 - 0x54486fff IncomingCallFilter armv7k /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x54487000 - 0x5448efff MobileSystemServices armv7k <81c0c30a470336438d889f9f967a4bec> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x54543000 - 0x54583fff ToneLibrary armv7k /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x54873000 - 0x5488efff PrototypeTools armv7k /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x5488f000 - 0x54896fff libChineseTokenizer.dylib armv7k <23d04e15edb133b08c5863eb40165372> /usr/lib/libChineseTokenizer.dylib
0x556b0000 - 0x55703fff CoreNLP armv7k /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x55704000 - 0x5572cfff MobileInstallation armv7k /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x5572d000 - 0x55822fff Navigation armv7k /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x55df6000 - 0x55e09fff BaseBoardUI armv7k <663bf317e0213388bbb9f1ef293c725c> /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x55fb8000 - 0x564f4fff VectorKit armv7k /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x564f5000 - 0x56642fff MapKit armv7k <4ce8a953838934e79277951920fafd66> /System/Library/Frameworks/MapKit.framework/MapKit
0x56667000 - 0x5666efff CoreTime armv7k /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x56819000 - 0x56889fff BulletinBoard armv7k /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
0x5688a000 - 0x5688dfff ConstantClasses armv7k /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x56934000 - 0x5694dfff CloudServices armv7k /System/Library/PrivateFrameworks/CloudServices.framework/CloudServices
0x56e7a000 - 0x56e7dfff LinguisticData armv7k <5c7f95a68e6e3828825a1acf9b05f9dd> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x57532000 - 0x5757bfff ClockKit armv7k /System/Library/Frameworks/ClockKit.framework/ClockKit
0x575ec000 - 0x57629fff CarouselUIServices armv7k <3855f6f54c153865b6b6e2a946412be3> /System/Library/PrivateFrameworks/CarouselUIServices.framework/CarouselUIServices
0x5783f000 - 0x57895fff HMFoundation armv7k /System/Library/PrivateFrameworks/HMFoundation.framework/HMFoundation
0x58412000 - 0x58426fff MetalKit armv7k /System/Library/Frameworks/MetalKit.framework/MetalKit
0x588ea000 - 0x588f1fff NanoPairedSync armv7k <1920c884502d330b9e69c1e7b15e44f8> /System/Library/PrivateFrameworks/NanoPairedSync.framework/NanoPairedSync
0x588f2000 - 0x5890dfff NetAppsUtilities armv7k <7e53fbe7a6703225966c225715ad484b> /System/Library/PrivateFrameworks/NetAppsUtilities.framework/NetAppsUtilities
0x5896e000 - 0x58b2dfff HomeKit armv7k /System/Library/Frameworks/HomeKit.framework/HomeKit
0x58b2e000 - 0x58b59fff OpenAL armv7k /System/Library/Frameworks/OpenAL.framework/OpenAL
0x58b5a000 - 0x58ecefff SceneKit armv7k <3bf5e9e703133425bd022cb5d28b2bf4> /System/Library/Frameworks/SceneKit.framework/SceneKit
0x58f06000 - 0x58f1dfff Jet armv7k <7483e465aeb63cd9b7fb6d864be636ba> /System/Library/PrivateFrameworks/Jet.framework/Jet
0x58f1e000 - 0x58ffbfff Montreal armv7k <5140403436023d1fb425cf7f2acf0041> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x58ffc000 - 0x5900afff LocalAuthentication armv7k <768920dfcd2e35bf844548c0f42ac74c> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x5900b000 - 0x59104fff SpriteKit armv7k <4e1b140ccd4e325fb72e92c2557f7a19> /System/Library/Frameworks/SpriteKit.framework/SpriteKit
0x59105000 - 0x59209fff WatchKit armv7k /System/Library/Frameworks/WatchKit.framework/WatchKit
0x592ae000 - 0x59517fff Espresso armv7k <6b3bb54a4f003e6599aa40576d383fc7> /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x59c60000 - 0x59c89fff ClockKitUI armv7k /System/Library/PrivateFrameworks/ClockKitUI.framework/ClockKitUI
0x59e42000 - 0x59f33fff Sharing armv7k /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x59f34000 - 0x59f7dfff UserActivity armv7k <3c4960f9f52032b585975e93cdb22572> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x5a21a000 - 0x5a24cfff WatchConnectivity armv7k /System/Library/Frameworks/WatchConnectivity.framework/WatchConnectivity
0x5aae9000 - 0x5ab36fff InstallCoordination armv7k <88a123754c1339c88e7e843ef91211bd> /System/Library/PrivateFrameworks/InstallCoordination.framework/InstallCoordination
0x5baea000 - 0x5bb47fff Rapport armv7k <86a483fb83083d7ebe980aa1f8e060ac> /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x5be7f000 - 0x5bf24fff AGXMetalS2 armv7k <79f3579ca89839328f9f03cd45478c8a> /System/Library/Extensions/AGXMetalS2.bundle/AGXMetalS2
0x5bf38000 - 0x5bf4bfff libCGInterfaces.dylib armv7k <8d80e829483f3d5ca5808328ca1cb658> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x5ca5f000 - 0x5ca65fff PushKit armv7k <10009160c66b3ffe9a41bc1c6ac69d70> /System/Library/Frameworks/PushKit.framework/PushKit
0x5d066000 - 0x5d081fff CellularPlanManager armv7k <685f17cd393a3432bda041fe76167c02> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x5d76d000 - 0x5d790fff CoreServicesInternal armv7k <9a9aa4c1b9043a78ba9a420e39d53893> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x5d935000 - 0x5d93ffff DeviceIdentity armv7k <550f265fc36b338aa7550a097f62aff9> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x5db12000 - 0x5db21fff libGSFontCache,6.dylib armv7k <306098e6de4b3430836e4328a8b9740a> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache,6.dylib
0x5e2e6000 - 0x5e2e9fff libmetal_timestamp.dylib armv7k /System/Library/PrivateFrameworks/GPUCompiler.framework/Libraries/libmetal_timestamp.dylib
0x5ef3d000 - 0x5ef44fff InternationalSupport armv7k <7eb7fd08d9123fdc85aa685febb007f7> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x5f2cc000 - 0x5f30bfff OSAnalytics armv7k <027d705df63c3b44830cc5fc46ee5726> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x5f7b9000 - 0x5f7bcfff XCTTargetBootstrap armv7k <469347e7a175334ea21f626327b27e22> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x5f7c5000 - 0x5f7d8fff libEDR armv7k /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x5f8dd000 - 0x5f908fff libAWDSupport.dylib armv7k <0576c5804d3d3482aa2a71158ce433f5> /usr/lib/libAWDSupport.dylib
0x5fbbc000 - 0x5fbbffff libcharset.1.dylib armv7k <6fa1d55104993d35aba8fb9ff3da2071> /usr/lib/libcharset.1.dylib
0x5fdfc000 - 0x5fe13fff libedit.3.dylib armv7k /usr/lib/libedit.3.dylib
0x60a29000 - 0x60b5efff CoreServices armv7k <67a62aff37773aecab3f5c8de6c3b714> /System/Library/Frameworks/CoreServices.framework/CoreServices
0x60b5f000 - 0x60b62fff AOPHaptics armv7k /System/Library/PrivateFrameworks/AOPHaptics.framework/AOPHaptics
0x60e94000 - 0x61040fff AudioToolboxCore armv7k <6bba29d4d9d9345a94cc67d7c08af107> /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x61041000 - 0x61068fff BoardServices armv7k <530e579c2bc639a2bc68266d3c2019d2> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x6106d000 - 0x6108ffff CoreServicesStore armv7k <8aefb67d5a5930dbb720675c3c53eb09> /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x610a9000 - 0x610b4fff libGSFont.dylib armv7k <6f08cc13d59633c68ff23a1d35c8b110> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x610b5000 - 0x610c0fff libhvf.dylib armv7k <099bc51e05e83c6993ed43ad6ed915e3> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x61104000 - 0x61127fff IconServices armv7k <54a097de2a7c3153a3f9daff84261faf> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x61128000 - 0x6112efff IdleTimerServices armv7k /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x6112f000 - 0x61150fff LocationSupport armv7k <155bf91494b93632a4074b14c4c33515> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x6130a000 - 0x61317fff RemoteTextInput armv7k /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x61318000 - 0x6134afff RunningBoardServices armv7k <1345cb7d55733dcbaa009682a318e41e> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x61531000 - 0x622c3fff UIKitCore armv7k /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x622c4000 - 0x622d1fff UIKitServices armv7k <9f93b9b499cc3a219b3a6dabed684847> /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x622d2000 - 0x622d5fff WatchdogClient armv7k <2a461f60c5683903afc1a26a0b609360> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x6240a000 - 0x6243dfff libAudioToolboxUtility.dylib armv7k /usr/lib/libAudioToolboxUtility.dylib
0x6243e000 - 0x62445fff libIOReport.dylib armv7k <55e63d80a8a632bfa8294727a19c676b> /usr/lib/libIOReport.dylib
0x62446000 - 0x624e9fff libmecab.dylib armv7k /usr/lib/libmecab.dylib
0x62552000 - 0x62559fff libswiftSpriteKit.dylib armv7k /usr/lib/swift/libswiftSpriteKit.dylib
0x62d37000 - 0x62df2fff Combine armv7k <237affd5615b38da82554a75c716489f> /System/Library/Frameworks/Combine.framework/Combine
0x62ff8000 - 0x6301bfff GSS armv7k /System/Library/Frameworks/GSS.framework/GSS
0x6308d000 - 0x630b7fff SharedUtils armv7k <818fc34f5015310d82d680c87791b750> /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x630b8000 - 0x630c3fff MediaAccessibility armv7k <6b566ed249dc3790843549197a054a33> /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x630cf000 - 0x63d04fff ModelIO armv7k <827cd8fb64203234a91899859fe704a9> /System/Library/Frameworks/ModelIO.framework/ModelIO
0x6425e000 - 0x64268fff AXCoreUtilities armv7k <2d3b20a6f2d233a7a4e66ba18a8a7ed9> /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x64d06000 - 0x64d33fff C2 armv7k <42a1f6a7de3e380f80a78b5ad3808bd4> /System/Library/PrivateFrameworks/C2.framework/C2
0x64df9000 - 0x64e04fff CPMS armv7k <88b3315def673ea69ba9b5ca65ca5408> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x64f70000 - 0x64f7bfff CaptiveNetwork armv7k /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x6581e000 - 0x65839fff CoreSVG armv7k <94a56ef4e4bf3c7b98041b3dec5a9080> /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x65884000 - 0x658f7fff CoreSymbolication armv7k <1dc20da5f681346b9ede957a66755155> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x65a4a000 - 0x65a55fff DataMigration armv7k <97f2fd68312d30469a9a0e7da13d50ed> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x664c7000 - 0x6651efff Heimdal armv7k /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x6687c000 - 0x66887fff MallocStackLogging armv7k <624f182c90823ee5bb5557bd4aad33c4> /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x668ef000 - 0x669a8fff MediaExperience armv7k <854bb7311b433c6c9c4033cddc3ca85b> /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x66a67000 - 0x66a6efff MobileActivation armv7k <7da6e295423c3a9596de2a1d5a0704a7> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x66e0f000 - 0x66e16fff Netrb armv7k <1f2ce67ca20435ca84bc36cd59d1f51e> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x66e64000 - 0x66e67fff OSAServicesClient armv7k <30da75fcd7ac319dacdfb7d22b3c15ff> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x66e8d000 - 0x66ebffff OTSVG armv7k <860b2f50d51938b68116565499622550> /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x67657000 - 0x676c1fff ShareSheet armv7k <8284d45f6e7b384d8f150c7f745e5fab> /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x6775b000 - 0x6775efff SignpostMetrics armv7k /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x677ea000 - 0x67816fff SiriInstrumentation armv7k /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x67bda000 - 0x67c4bfff Symbolication armv7k <03d4b510dd4b330e807253b9a9f9bb31> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x67ebd000 - 0x67ec4fff URLFormatting armv7k /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x681a0000 - 0x682aefff WebKitLegacy armv7k <6a1a55c850cd358eae87fc1e3ac7ac96> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x6872c000 - 0x6873bfff caulk armv7k /System/Library/PrivateFrameworks/caulk.framework/caulk
0x68764000 - 0x6876efff perfdata armv7k <9a93ab5442603da3ba17ffddf598c03f> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x68a51000 - 0x68a54fff libThaiTokenizer.dylib armv7k <023b58f719543147a0b186fc64c8e3ea> /usr/lib/libThaiTokenizer.dylib
0x68ac5000 - 0x68ad8fff libapple_nghttp2.dylib armv7k <5bc1691dfddd3c54acb3a222c2aeae9f> /usr/lib/libapple_nghttp2.dylib
0x68b2d000 - 0x68b3cfff libbsm.0.dylib armv7k /usr/lib/libbsm.0.dylib
0x68b3d000 - 0x68b4cfff libcmph.dylib armv7k <6a61181f840b36d08c21d0762bd167d9> /usr/lib/libcmph.dylib
0x68ff9000 - 0x68ffcfff libgermantok.dylib armv7k <022f9e0402303a53b74e1a42020c7366> /usr/lib/libgermantok.dylib
0x68ffd000 - 0x69000fff libheimdal-asn1.dylib armv7k <84562128128839e4b764461935cc8b09> /usr/lib/libheimdal-asn1.dylib
0x69365000 - 0x6938cfff libncurses.5.4.dylib armv7k <1718e333ea4531debc4213aeb936e983> /usr/lib/libncurses.5.4.dylib
0x69635000 - 0x69640fff libperfcheck.dylib armv7k /usr/lib/libperfcheck.dylib
0x6964d000 - 0x69650fff libutil.dylib armv7k /usr/lib/libutil.dylib
0x696a9000 - 0x696b0fff libswiftClockKit.dylib armv7k /usr/lib/swift/libswiftClockKit.dylib
0x696b1000 - 0x6999cfff libswiftCore.dylib armv7k <2f043d942ed731f1a50a98c7924bfb77> /usr/lib/swift/libswiftCore.dylib
0x6999d000 - 0x699a0fff libswiftCoreFoundation.dylib armv7k /usr/lib/swift/libswiftCoreFoundation.dylib
0x699a1000 - 0x699b0fff libswiftCoreGraphics.dylib armv7k <8992fe69fea33420a9e13ac5230aff37> /usr/lib/swift/libswiftCoreGraphics.dylib
0x699b1000 - 0x699b8fff libswiftCoreLocation.dylib armv7k /usr/lib/swift/libswiftCoreLocation.dylib
0x699f5000 - 0x699fcfff libswiftDarwin.dylib armv7k <22d7298987de30e09e84051a66eccb1a> /usr/lib/swift/libswiftDarwin.dylib
0x699fd000 - 0x69a14fff libswiftDispatch.dylib armv7k /usr/lib/swift/libswiftDispatch.dylib
0x69a15000 - 0x69b5dfff libswiftFoundation.dylib armv7k /usr/lib/swift/libswiftFoundation.dylib
0x69b5e000 - 0x69b61fff libswiftHomeKit.dylib armv7k <63e411f9a7b13f808f99c47473614ab0> /usr/lib/swift/libswiftHomeKit.dylib
0x69b62000 - 0x69b69fff libswiftMapKit.dylib armv7k /usr/lib/swift/libswiftMapKit.dylib
0x69b6a000 - 0x69b6dfff libswiftObjectiveC.dylib armv7k /usr/lib/swift/libswiftObjectiveC.dylib
0x69b6e000 - 0x69b75fff libswiftSceneKit.dylib armv7k <82bc30c3a383329e96f6b2ab673405d7> /usr/lib/swift/libswiftSceneKit.dylib
0x69b76000 - 0x69b81fff libswiftUIKit.dylib armv7k /usr/lib/swift/libswiftUIKit.dylib
0x69b82000 - 0x69b89fff libswiftWatchKit.dylib armv7k <9f6966846b08339ba076ae02f5456fd9> /usr/lib/swift/libswiftWatchKit.dylib
0x69b92000 - 0x69bb5fff libswiftsimd.dylib armv7k <0ad4843789b432c9897545f984cbe0b8> /usr/lib/swift/libswiftsimd.dylib
0x69c12000 - 0x69c15fff libsystem_featureflags.dylib armv7k <27c5b55e582d3b058077e5129f1c9db3> /usr/lib/system/libsystem_featureflags.dylib

Error Formulating Crash Report:
thread_get_state(...ARM_EXCEPTION_STATE64) returned 4: (os/kern) invalid argument

ROM loading issue

So, I've loaded the ROM onto my phone using iTunes, but on my Watch, the game isn't showing up. The app just says, "Add games to your phone's Documents folder from iTunes" Can anyone help with this?

Trying to build on latest beta

Attempting to build install on Apple Watch Series 0 running latest beta OS. Also running latest Xcode beta.

When attempting build, getting consistent build failures.

Errors I'm seeing:
/Users/me/GIOVANNI/gambatte/libgambatte/src/video/ppu.cpp:320:64: Reference to 'uint_least32_t' is ambiguous

/Applications/Xcode-beta.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS3.2.sdk/usr/include/stdint.h:35:24: Candidate found by name lookup is 'uint_least32_t'

/Users/me/GIOVANNI/gambatte/libgambatte/include/gbint.h:50:23: Candidate found by name lookup is 'gambatte::uint_least32_t'

/Users/me/GIOVANNI/gambatte/libgambatte/src/video/ppu.cpp:386:11: Use of undeclared identifier 'dst'

youtube/any videos tutorial

I am commenting because I have a lot of problems and a video about how to install easier the application.
I searched all over the internet and I didn't found a video that teach how to install, and the site Redmondpie it's not very helpful for me since my english is poor and i am a newbie on this programming world.
Can you please help.
WARNING: It's not required to do a video but I will REALLY APPRECIATE if you do that video for me. :)

SETUP

the setup is so hard not working pls make it easier and have an video totorial

uint errors, can't compile

err

I'm getting these errors in the attached picture using your most recent code. Do you know how I can fix them? I'm running Xcode 8.2.1
-Thank you

swift build error

I am trying to build and have edited all signing areas and modified to a unique name replacing com.gabrieloc but am receiving a build failure with the following listed.

giovanni WatchKit Extension
Swift Compiler Error
-Switch must be exhaustive (ComplicationDataSource.swift)

and

Command CompileSwift failed with a nonzero exitcode

any suggestions in getting these items fixed so xcode build will succeed?
img_1114

Crash When Trying to Load or Save

Hello!
Recently whilst trying to play Pokemon Yellow on my Apple Watch 42mm Series 0, every time I force touch and tap either the 'Load' or 'Save' button it just crashes the app

Crashing

Finally got the app compiled and running on my iPhone 8+ on iOS 11.3.1 and got it installed to my Apple Watch S3 (A1758) on watchOS 4.3.1

I got the Pokemon Yellow GBC rom just to test it out. Everything was going good, tapping A to get my name set up in game. Finally got to where I could ALMOST save, and the app crashed on my watch.
I reopened the game and it wasn't saved, sadly. Started again, and before I even got to put in my name, it crashed again. Haven't tested any other roms.

Possible fixes:

  • When pressing X up at the top of the screen, save the game state.
  • Every 10 seconds, save the game state.
  • Find source of crash and hopefully fix it?

No such file or directory

clang: error: no such file or directory: '/Users/---------/Downloads/GIOVANNI-master/gambatte/common/videolink/vfilters/maxsthq3x.cpp'
clang: error: no input files

My english is very poor. Can you help me?
I don't know what to do.
I have 8 issues just saying : no such file or directory...... and no input files.
Please help me

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.