Reputation: 121
Thanks for taking the time to read this.
I'm atempting to create a text file using ARM Assembly.
I have found various tutorials on how to acheive this in x86 (see here) but as of yet have been unable to find any information on how to do this with the ARM instruction set.
Upvotes: 1
Views: 1043
Reputation: 6234
The x86 code you reference relies on a BIOS being available to perform this task for you. Your ARM environment contains no BIOS, so without an operating system you are simply out of luck.
See This Question for a little but more information about what your x86 example actually does.
Another Question is a more descriptive one of the work you need to do to achieve what you ask, once you are within an operating system. It also has an answer with some links in it.
Upvotes: 1