Tagged Questions
0
votes
1answer
19 views
exception after `call far TSS descriptor:offset`
I have a big problem that's got me stuck for a month!
I'm writing assembly code to do a task switch by call far [es:esi + TCB.addr_tss] in bochs, like picture 1.
Now I step into the new task, so I ...
1
vote
1answer
69 views
Recommendation for a simple x86 emulator and operating system
As a personal learning project, I want to port an existing x86 emulator library to JavaScript and then run a very simple operating system on top of it.
My only requirement for the library is that it ...
2
votes
2answers
66 views
The relation between privileged instructions, traps and system calls
I am trying to understand how a virtual machine monitor (VMM) virtualizes the CPU.
My understanding right now is that the CPU issues a protection fault interrupt when a privileged instruction is ...
3
votes
1answer
72 views
Why do interrupts need to be disabled before switching to protected mode from real mode?
I saw in many many oses (and some bootloader), they all disable interrupt (cli) before switch to protected mode from real mode. Why we need do that?
2
votes
1answer
127 views
C call back function from assembly (x86) and process switching
This code is for my undergraduate OS course. I am trying to call a function on the same stack of new_sp and then return to whatever new_sp was doing. It is not working and I'm not even sure how to ...
7
votes
2answers
169 views
Cache behaviour of memory-mapped I/O
Does anyone know which type of CPU cache behaviour (e.g. uncacheable write-combining) is assigned to file-backed, memory-mapped I/O on modern x86 systems? Is there any way to detect which is the ...
0
votes
2answers
90 views
Reading memory pointed by register with GDB
Is there a way to look at memory content from GDB if I know the memory location.
That is I'm debugging a x86 assembly program I written for my Operating Systems Course. What I'm trying to do is to ...
1
vote
3answers
152 views
What's the general reason to know assembly?
AFAIK interrupt-handling must be implemented in assembly when I RTFM.
The eret instruction is used to resume execution at the pre-exception address.
Can this reason be generalized also for x86, ...
0
votes
1answer
119 views
Modify clock interrupt handler xinu
I have an operating systems project due tonight, and needed clarification on a topic. We are working with the operating system XINU. I am trying to change the default OS scheduler to account for some ...
0
votes
2answers
202 views
mmap substitute for malloc
I need to find a way to use mmap instead of malloc. How is this possible? (I am not using libc only syscalls) And yes brk() is possible. I used sbrk() but realized its not sys-call... (x86 inline ...
1
vote
1answer
129 views
Invalid operand type error
NASM gives the following error message:
> ipl.asm:33: error: invalid operand type
Where the error appears:
RESB 0x7dfe-$
Here is the code:
ORG 0x7c00
JMP ...
1
vote
0answers
74 views
Run Android x86 with 256 colors
I'm trying to run Android x86 in 256 colors mode. Is there any setting like in Windows OS that I can change and make the all Android OS system run in 8bit colors mode? Or should I suppose to recompile ...
-3
votes
1answer
43 views
Booting a .net EXE file onto an X86 computer [closed]
The question says it all. I am wondering If there is any way to boot a .net EXE file as an OS for X86. If there is existing software that compiles the EXE code into x86, I would appreciate hearin ...
1
vote
2answers
162 views
Do ring 0 programs use physical memory addresses?
I'm designing a memory chip, and since this seems like the best place to ask a related system software question...
On a modern x86 processor, does system-level code (protection ring 0) run on ...
1
vote
2answers
99 views
Can xchg instruction insure memory ordering?
Some os kernels use xchg instruction to implement the spinlock. And inside their implementation of acquire lock function, they usually disable interrupts before acquiring the lock using xchg ...
0
votes
0answers
191 views
Good second x86 Assembly book [closed]
I'm deeply interested in system programming(writing OS and Drivers for specific Operating System,For example linux or Windows),Reverse engineering. And almost everything which is about low level ...
0
votes
3answers
240 views
Stack for iret and int instruction
An interrupt causes the CPU to save the EFLAGS, CS and IP registers onto the "stack" and the iret instruction pops them off it. Where is this stack located? How does the CPU know about it (I assume ...
2
votes
2answers
157 views
Data segment in x86 programs
I've been programming x86 asm programs (bootloaders) in real mode, and I know how to use segments, registers and stuff like that.
I see from debuggers like OllyDbg and similar that DS registers, SS, ...
4
votes
2answers
546 views
Global Descriptor Table
I've been reading Intel manual about Virtual Memory (Segmentation + Paging). As I understand there is special register that holds Global Descriptor Table (GDT). GDT contains NULL Descriptor, Local ...
-4
votes
1answer
111 views
xv6 rev6 page fault handler
I can't find the page fault handler in xv6-rev6 source code. Is it I missed it or there is no page fault handler at all? I do acctually found " #define T_PGFLT 14 // page fault " in ...
-6
votes
4answers
77 views
Application 32/64 bit and OS 32/64 bit [closed]
I would like to know the following things :
Can a 32 bit application run under a 32-bit operating system?
Can a 32 bit application run under a 64-bit operating system?
Can a 64 bit application run ...
1
vote
1answer
102 views
Cannot jump without error
I've problem. Last days I'm playing with GDT, A20 and protected mode. I have this simple code for GDT:
gdt_start:
gdt_null:
dd 00000000h
dd 00000000h
gdt_code:
dw 0xFFFF
dw 0
db ...
1
vote
2answers
364 views
Opening a file in Assembly Language independent of OS
I have been trying to figure out how to open a file from the hard drive in assembly. I want to do this without using DOS interrupts or anything that would require an operating system, because I am ...
1
vote
1answer
150 views
My kernel runs normally in qemu,but double fault in bochs
My kernel crashes when it executes the first page fault executes.
And my page fault handler looks like this:
asm_page_error_wrapper:
PUSHA
movl %esp, %esi
pushl 48(%esi)/*esp,pusha has ...
6
votes
1answer
1k views
How do x86 page tables work?
I'm familiar with the MIPS architecture, which is has a software-managed TLB. So how and where you (the operating system) wants to store the page tables and the page table entries is completely up to ...
1
vote
1answer
96 views
What's the values of all the general-purpose registers, when a program starts running? [duplicate]
Possible Duplicate:
What is default register state when program launches (asm, linux)?
I know the %esp and %eip should set to proper values by the OS kernel, so that the program can run, ...
2
votes
2answers
574 views
Building FreeRTOS for x86
I read online that it was possible to build FreeRTOS on Windows for an external device. Can you build it for x86 on ubuntu?
Thanks
1
vote
2answers
217 views
How to keep atomicity when contex switching in the kernel mode?
There is no doubt that context switching in kernel mode, which is trapped in by hardware interrupt or software interrupt. It is also known that context switching should be kept in atomic, but how do ...
0
votes
1answer
75 views
How could one interrupt handler go until the same source is free?
Note that a single interrupt source (timer, keyboard, etc.)
will not signal a new interrupt to the processor until
the processor has indicated that handling of the previous interrupt from that ...
1
vote
3answers
301 views
Must IRET be used when returning from an interrupt?
IRET can restore the registers from the stack,including EFLAGS, ESP, EIP and so on, but we can also restore the registers all by ourselves. For example, "movl" can be used to restore the %esp ...
0
votes
1answer
120 views
Interrupt table modification
I'm writing my own operating system and need to know how to modify the interrupt table so that certain ones (print string, etc.) are redirected to the command prompt application, similar to how DOS ...
2
votes
1answer
591 views
Identifying faulting address on General Protection Fault (x86)
I am trying to write a ISR for the General Protection Fault (GP#13) on x86. I am unable to figure out from the INTEL docs as to how I can find out the faulting address causing the exception. I know ...
3
votes
1answer
193 views
bios and real mode
It is said that bios program can only be seen in real mode, it is also known that bios is stored in ROM, but what the CPU maps is RAM usually, does it mean in real mode, some space of the memory is ...
1
vote
2answers
341 views
whats the use of “org xxxx” in assembly
Recently im learning how to write a boot sector, here is the complete code that i am learning:
org 07c00h
mov ax, cs
mov ds, ax
mov es, ax
call DispStr
jmp $
DispStr:
mov ax, ...
2
votes
1answer
204 views
Hello World bootloader hanging after first character
I am using this code for a Hello world bootloader. Instead of printing out "Hello world\n" it just prints out a 'H' and hangs. I have used loadsb print out the message successfully but I can't ...
2
votes
0answers
81 views
How to prevent global objects being compiled out in a free-standing environment
I'm creating global objects in different compilation units which are constructed in a self-made startup-code:
.startup:
mov ebx, start_ctors
jmp .ctor_loop
.call_ctor:
call [ebx]
add ...
0
votes
2answers
395 views
virtual memory page replacement
It is known that some pages need to be replaced in the demand of paging when all frames are full.However, pages can be used as text, rodata, data, which are all called in from disk I/O, but pages such ...
2
votes
3answers
312 views
page fault,shortage of page or access violation?
It is known that when access a page which does not exist in the memory can lead to a page fault, but writing a read-only page can also cause a page fault? How to identify the two types of page fault ...
0
votes
1answer
167 views
Minimum number of frames needed on an x86 processor
I am implementing virtual memory in PINTOS running on x86 ,I want to know the minimum number of frames needed for a process on an x86 processor.
I found out that it depends on the maximum level of ...
1
vote
1answer
247 views
Logical address in segmentation
Intel guide says "The logical address consists of a 16-bit selector and 32-bit offset". Now if using a small program in C:
printf("The address of a=%x", &a);
The output is: 0xbffa8343
The ...
0
votes
1answer
30 views
If only segmentation is enabled
beginners question:
"If" paging is disabled and only segmentation is enabled (CR0.PE is set) then does that mean if a program is loaded in memory (RAM), its whole binary image is loaded and none of ...
0
votes
2answers
214 views
Software initialization code at 0xFFFFFFF0H
Intel says after reset the processor is placed in real mode and the software initialization code starts at 0xFFFFFFF0H. My questions:
If processor is in real-mode how can it acess the memory > 1MB ...
1
vote
4answers
145 views
OS development: How to avoid an infinite loop after an exception routine
For some months I've been working on a "home-made" operating system.
Currently, it boots and goes into 32-bit protected mode.
I've loaded the interrupt table, but haven't set up the pagination (yet).
...
0
votes
3answers
464 views
Segment Selector in IA-32
When does segment selector comes in picture. The line in Intel Guide says:
"Each segment descriptor has an associated segment selector. A segment selector
provides the software that uses it with an ...
1
vote
1answer
122 views
32 bit systems logical address
In a 32 bit system a logical address is divided as |10|10|12|, page directory offset, page table offset and page offset.
Since a page in x86 systems is 4KBytes, and to represent 4K entries, log2(4K) ...
3
votes
2answers
593 views
how to shutdown the machine? i'm building a tiny OS of my own
can the hlt instruction in assembly shutdown a computer it as it halts the processor? if it can be done using what i have told, is it the right way?
can hlt shutdown the machine?
If this is not ...
2
votes
1answer
132 views
Is an LDT needed?
As part of some OS development for a 32-bit x86 processor, I am considering using an task gate in the interrupt descriptor table for the page fault vector. The aim is to force a task switch so that ...
1
vote
2answers
591 views
Do ARM processors/OS for ARM - have security rings?
I wonder, do ARM processors have special registers to suppport the idea of security rings and do such operating systems like Android, Palm or anothers support security rings?
In WIKI , there is info, ...
2
votes
3answers
319 views
program life in terms of paged segmentation memory
I have a confusing notion about the process of segmentation & paging in x86 linux machines. Will be glad if some clarify all the steps involved from the start to the end.
x86 uses paged ...
0
votes
1answer
118 views
I created a dd array but can't output anything
I'd like to find the largest number in the predefined array and output it to the screen. Now I know for a fact my logic to find the largest number is correct but to output it is like fighting a war ...


