Skip to content

Commit

Permalink
Update to v2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
PabloMK7 committed Apr 24, 2021
1 parent e813929 commit 619e13b
Show file tree
Hide file tree
Showing 97 changed files with 134 additions and 12,609 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ Gitlab/
[Dd]ebug/
.vs
*.3gx
*.user
*.user
.vscode/
24 changes: 14 additions & 10 deletions 3ds.ld → 3gx.ld
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,14 @@ PHDRS
SECTIONS
{
/* =========== CODE section =========== */
. = 0x07000100;
__start__ = . ;
.text ALIGN(0x4) :

PROVIDE(__start__ = 0x07000100);
. = __start__;

.text ALIGN(4) :
{
/* .init */
bootloader.o (.text*)
KEEP( *(.crt0) )
KEEP( *(.init) )
. = ALIGN(4);

Expand Down Expand Up @@ -48,7 +50,7 @@ SECTIONS
*(.gnu.linkonce.r*)
SORT(CONSTRUCTORS)
. = ALIGN(4);
}
} : rodata

.ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } : rodata
__exidx_start = .;
Expand Down Expand Up @@ -124,24 +126,26 @@ SECTIONS
KEEP (*(.dtors))
} : data

.bss ALIGN(4):
{ *(.__bss_start)
__bss_start__ = .;
.bss ALIGN(4) :
{
*(.dynbss)
*(.bss)
*(.bss.*)
*(.gnu.linkonce.b*)
*(COMMON)
. = ALIGN(4);
*(.__bss_end)

/* Reserve space for the TLS segment of the main thread */
__tls_start = .;
. += + SIZEOF(.tdata) + SIZEOF(.tbss);
__tls_end = .;
} : data

__bss_end__ = .;

__end__ = ABSOLUTE(.) ;

/* ==================
/* ==================
==== Metadata ====
================== */

Expand Down
35 changes: 0 additions & 35 deletions Includes/3ds.h

This file was deleted.

14 changes: 0 additions & 14 deletions Includes/CTRPluginFramework.hpp

This file was deleted.

7 changes: 0 additions & 7 deletions Includes/CTRPluginFramework/Graphics.hpp

This file was deleted.

102 changes: 0 additions & 102 deletions Includes/CTRPluginFramework/Graphics/Color.hpp

This file was deleted.

131 changes: 0 additions & 131 deletions Includes/CTRPluginFramework/Graphics/OSD.hpp

This file was deleted.

11 changes: 0 additions & 11 deletions Includes/CTRPluginFramework/Menu.hpp

This file was deleted.

Loading

0 comments on commit 619e13b

Please sign in to comment.