I am following the Baking Pi Raspberry Pi ASM OS tutorial here, and I thought that it would be cool if I could create a compiler/runner for like, BASIC or a language I create. I don't have the skill yet to create something like that, so hopefully I can get an answer that will help point me down the right path.
My question is, can I (I'm guessing with a bit of work, nothings free/easy when it comes to low-level programming) get my ASM OS (that I created following the the tutorial, following the tut word-for-word) to run programs that run on the Raspberry Pi in Raspbian? Like a Python or BASIC interpreter or a simple text editor?
It should work, I'm thinking, because I'm still using the same architecture (still the same ARM SOC) as what runs Raspbian, so shouldn't the same programs work, even if I'm not using the same OS?
I'm thinking that I would have to create a program/system file that allows me to load a C/C++/C#/etc. program into memory and execute it, but I'm very new to this low-level programming world so I don't where or what to look for.