Hi there,
I'm trying to run the barebones tutorial, but I when the kernel boots, the screen is filled with jibrish.
I compiled my own i586 cross compiler & bochs using the tutorials. I'm using NASM, and bochs to boot.
I followed all the steps, everything looks ok.
I know there can be a lot of reasons for this to happen, if you want me to post anything regarding my configuration, let me know.
jibrish is displayed when running Bare-Bones
jibrish is displayed when running Bare-Bones
“Meaningless! Meaningless!”
says the Teacher.
“Utterly meaningless!
Everything is meaningless.” - Ecclesiastes 1, 2
Educational Purpose Operating System - EPOS
says the Teacher.
“Utterly meaningless!
Everything is meaningless.” - Ecclesiastes 1, 2
Educational Purpose Operating System - EPOS
Re: jibrish is displayed when running Bare-Bones
May we see a screenshot?
EDIT: Here is a good way to test your setup.
EDIT: Here is a good way to test your setup.
Code: Select all
bits 16
org 0x7c00
mov ax, 0xb800
mov ds, ax
xor ax, ax
mov [ax], "S"
inc ax
mov [ax], 7
hlt
times 510-($-$$) db 0
dw 0x55aa
Last edited by Mikemk on Sat Mar 16, 2013 2:48 pm, edited 1 time in total.
Programming is 80% Math, 20% Grammar, and 10% Creativity <--- Do not make fun of my joke!
If you're new, check this out.
If you're new, check this out.
- xenos
- Member
- Posts: 1121
- Joined: Thu Aug 11, 2005 11:00 pm
- Libera.chat IRC: xenos1984
- Location: Tartu, Estonia
- Contact:
Re: jibrish is displayed when running Bare-Bones
The bare bones tutorial should be small enough to single step through it, I would assume.
Re: jibrish is displayed when running Bare-Bones
I will try the assembly you provided.
“Meaningless! Meaningless!”
says the Teacher.
“Utterly meaningless!
Everything is meaningless.” - Ecclesiastes 1, 2
Educational Purpose Operating System - EPOS
says the Teacher.
“Utterly meaningless!
Everything is meaningless.” - Ecclesiastes 1, 2
Educational Purpose Operating System - EPOS