summary refs log tree commit diff stats
path: root/lib/nintendoswitch
Commit message (Collapse)AuthorAgeFilesLines
* Rewrite the memory management code for Nintendo Switch (#8169)Joey2018-07-051-5/+20
| | | | | | | | | | | | | | | | Rewrite the memory management code for Nintendo Switch The first implementation was naive and did not account for multiple memory allocations. However, this implementation may still be incomplete. Currently, when running applications, the code runs fine. When the application is exited via code (the end of the program is reached or quit() is called), the Switch will crash. Not sure why this happens, but I suspect it is from Nim memory allocations. I suspect the memory allocations because when I compile the helloworld application without any Nim allocations (just C function calls) and use `--gc:none` as a compile option, the application exits fine.
* Nintendo switch support (#8069)Joey2018-06-271-0/+21
* Add config section for Nintendo Switch * Add compiler configuration for Nintendo Switch and it's CPU * Add specific lib code for Nintendo Switch * Add GC support for Nintendo Switch * Update changelog for Nintendo Switch * Update changelog with more info about fixed paths * Cleaned up GC memory management a bit * Relocate docs for Switch * Rename aarch64NoneElfGcc to nintendoSwitchGCC * Remove armv8a57 * Fix installer.ini * Reuse code in linux and amd64 * Add posix defs for nintendo switch * Add more defined sections for nintendo switch * Remove old comment * Add what's not supported for Nintendo Switch docs * Make nintendoswitch == posix * Remove DEVKITPRO references from nim.cfg * Make PR extccomp changes * Remove Result type alias * Add separate switch consts file * Update docs for nintendo switch * Fix travis errors with undefined consts and add correct wait.h procs
committer GitHub <noreply@github.com> 2020-03-20 17:11:39 +0100 SSL certificate verify GitHub action (#13697)' href='/ahoang/Nim/commit/lib/pure/ssl_certs.nim?h=devel&id=5b854442448af96d57135ba7328b0c21f1f80f40'>5b8544424 ^
6162da812 ^











5b8544424 ^





abac35e74 ^
5b8544424 ^

abac35e74 ^
5b8544424 ^




abac35e74 ^
74d6a4d7f ^











abac35e74 ^
297c8e403 ^
6162da812 ^
dc5a40f3f ^
6162da812 ^
695154970 ^
6162da812 ^













5b8544424 ^























1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165