summaryrefslogtreecommitdiff
path: root/Readme.md
diff options
context:
space:
mode:
Diffstat (limited to 'Readme.md')
-rw-r--r--Readme.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/Readme.md b/Readme.md
index a547825..ee69d0d 100644
--- a/Readme.md
+++ b/Readme.md
@@ -1,5 +1,14 @@
# SEGA Mega Drive/Genesis Samples in C
-An attempt to rewrite [gh:BigEvilCorporation/megadrive_samples](https://github.com/BigEvilCorporation/megadrive_samples) in C.
+An attempt to rewrite
+[gh:BigEvilCorporation/megadrive_samples](https://github.com/BigEvilCorporation/megadrive_samples)
+in C. There is a trade-off of showing some C's best practices of bare metal
+projects and keeping the code as close as possible to original assembly code, at
+least by structure and sequence.
Inspired by [gh:cortexm/baremetal](https://github.com/cortexm/baremetal).
+
+Comments are copy-pasted in most cases. Sometimes they tell about assembler
+language specific things, but there is no assembly code at all - only C and ld
+scripts. Maybe at some point in the future I will rewrite them according to C
+code, but IMHO some of them are so much redundant and should be removed.