Skip to content

Commit e440c07

Browse files
committed
follow licenses of codes
1 parent c5c375b commit e440c07

35 files changed

Lines changed: 316 additions & 36 deletions

misc/2048.s

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
/* ===============================
2+
3+
This program uses codes from Rosetta Code.
4+
See: https://rosettacode.org/wiki/2048
5+
This code follows Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
6+
7+
=============================== */
8+
19
/* ARM assembly AARCH64 Raspberry PI 3B */
2-
/* program 2048_64.s */
10+
/* program 2048.s */
311
412
/*******************************************/
513
/* Constantes file */

misc/hello_world.s

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
/* ===============================
2+
3+
This program uses codes from Rosetta Code.
4+
See: https://rosettacode.org/wiki/Hello_world/Text
5+
This code follows Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
6+
7+
=============================== */
8+
19
.equ STDOUT, 1
210
.equ SVC_WRITE, 64
311
.equ SVC_EXIT, 93

misc/josephus_problem.s

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
1+
/* ===============================
2+
3+
This program uses codes from Rosetta Code.
4+
See: https://rosettacode.org/wiki/Josephus_problem
5+
This code follows Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
6+
7+
=============================== */
8+
19
/* ARM assembly AARCH64 Raspberry PI 3B */
2-
/* program josephus64.s */
3-
/* run with josephus64 maxi intervalle */
4-
/* example : josephus64 41 3
10+
/* program josephus_problem.s */
11+
/* run with josephus_problem maxi intervalle */
12+
/* example : josephus_problem 41 3
513
614
/*******************************************/
715
/* Constantes file */

misc/perfect_numbers.s

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
/* ===============================
2+
3+
This program uses codes from Rosetta Code.
4+
See: https://rosettacode.org/wiki/Perfect_numbers
5+
This code follows Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
6+
7+
=============================== */
8+
19
/* ARM assembly AARCH64 Raspberry PI 3B */
2-
/* program perfectNumber64.s */
10+
/* program perfect_numbers.s */
311
/* use Euclide Formula : if M=(2puis p)-1 is prime M * (M+1)/2 is perfect see Wikipedia */
412
/*******************************************/
513
/* Constantes file */

misc/sha1.s

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
/* ===============================
2+
3+
This program uses codes from Rosetta Code.
4+
See: https://rosettacode.org/wiki/SHA-1
5+
This code follows Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
6+
7+
=============================== */
8+
19
/* ARM assembly AARCH64 Raspberry PI 3B */
2-
/* program sha1_64.s */
10+
/* program sha1.s */
311
412
/*******************************************/
513
/* Constantes file */

misc/sha256.s

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
/* ===============================
2+
3+
This program uses codes from Rosetta Code.
4+
See: https://rosettacode.org/wiki/SHA-256
5+
This code follows Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
6+
7+
=============================== */
8+
19
/* ARM assembly AARCH64 Raspberry PI 3B */
2-
/* program sha256_64.s */
10+
/* program sha256.s */
311
412
/*******************************************/
513
/* Constantes file */

misc/y_combinator.s

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
/* ===============================
2+
3+
This program uses codes from Rosetta Code.
4+
See: https://rosettacode.org/wiki/Y_combinator
5+
This code follows Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
6+
7+
=============================== */
8+
19
/* ARM assembly AARCH64 Raspberry PI 3B */
2-
/* program Ycombi64.s */
10+
/* program y_combinator.s */
311
412
/*******************************************/
513
/* Constantes file */

sorters/bead_sort.s

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
/* ===============================
2+
3+
This program uses codes from Rosetta Code.
4+
See: https://rosettacode.org/wiki/Sorting_algorithms/Bead_sort
5+
This code follows Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
6+
7+
=============================== */
8+
19
/* ARM assembly AARCH64 Raspberry PI 3B */
2-
/* program beadSort64.s */
10+
/* program bead_sort.s */
311
/* En français tri par gravité ou tri par bille (ne pas confondre
412
avec tri par bulle (bubble sort)) */
513

sorters/bogo_sort.s

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
/* ===============================
2+
3+
This program uses codes from Rosetta Code.
4+
See: https://rosettacode.org/wiki/Sorting_algorithms/Bogosort
5+
This code follows Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
6+
7+
=============================== */
8+
19
/* ARM assembly AARCH64 Raspberry PI 3B */
2-
/* program bogosort64.s */
10+
/* program bogo_sort.s */
311
412
/*******************************************/
513
/* Constantes file */

sorters/bubble_sort.s

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
/* ===============================
2+
3+
This program uses codes from Rosetta Code.
4+
See: https://rosettacode.org/wiki/Sorting_algorithms/Bubble_sort
5+
This code follows Creative Commons Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.
6+
7+
=============================== */
8+
19
/* ARM assembly AARCH64 Raspberry PI 3B */
2-
/* program bubbleSort64.s */
10+
/* program bubble_sort.s */
311
412
/*******************************************/
513
/* Constantes file */

0 commit comments

Comments
 (0)