0
votes
2answers
39 views
How to get input and display it without int 21h
I am currently trying to write a simple operating system and I am having trouble getting and returning user input. Basically because it's OS independent I can't use int21. The code that I am using now ...
1
vote
4answers
74 views
Finding the Starting Address of an array
I've been working on the bufbomb lab from CSAPPS and I've gotten stuck on one of the phases.
I won't get into the gore-y details of the project since I just need a nudge in the right direction. I'm ...
0
votes
0answers
11 views
OS The datapath in operation for an R-type
I am studying in Operating System course, and in datapath chaper, there something that I do not understand, please feel free your time to look around this.
Datapath in R-type, and complete the ...
1
vote
1answer
34 views
Decimal to binary using sign, exponent, magnitude
I have an operating systems final later today and i'm looking over my past exams. Anyways long story short I got it wrong, this isn't a HW problem I'm just unsure how to do it.
"Suppose we use 32 ...
0
votes
1answer
52 views
Shutdown OS in assembly
I'm writing a simple OS in assembly but I can't figure out how to shutdown the computer.
I've tried to use hlt like this
.shutdown:
mov si, msg_shutdown
call print_string
hlt
but it ...
2
votes
1answer
137 views
Why do we write some part of os in assembly and some part in high level language like c? [closed]
In implementing operating system except very small part is written in assembly while most part is written in high level languages such as C/c++
What is the part that is written in assembly and why do ...
1
vote
0answers
59 views
Multitasking in emu8086
I have a homework about multitasking in emu8086. I have my kernel and some programs which runs pretty good in sperate but how do ı make them in multitasking. I have no idea.Teacher said me you can ...
2
votes
3answers
91 views
+50
How does a debugger set breakpoints if the image is in read-only memory?
How does a debugger set breakpoints if the image is in read-only memory? I know there are hardware breakpoints, but in the debugger I use (OllyDbg) those have to be set specially using a different ...
0
votes
1answer
43 views
Armv6 Assembler for Mac
I am following this tutorial on operating system development for the raspberry pi.
http://www.cl.cam.ac.uk/projects/raspberrypi/tutorials/os/ok01.html
I am using a Mac, so it suggests using the ...
2
votes
1answer
113 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
145 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
3answers
73 views
How to search for a file in a FAT12 system in Assembly
Currently, I've been following the BrokenThorn Series on OS Dev, and I've run into a bit of a problem. Right now, as a part of my journey through the tutorial, I'm currently coding the part that loads ...
5
votes
1answer
51 views
Understanding os bootloading - assembly
I am trying to go more indepth os understanding. So, the linux boot has to deal with an assembly file. I know about mov, push, pop, but here I am quite lost with this :
.globl __start
.ent ...
0
votes
1answer
59 views
How does one load external code with a custom bootloader?
I'm writing my own operating system, and so far I'm only really able to write it in assembly, because I don't really understand how I would set it up with multiple files/languages. I've written ...
1
vote
4answers
194 views
Port GNU C Library to minimal hobby OS
So I have a minimal OS that doesn't do much. There's a bootloader, that loads a basic C kernel in 32-bit protected mode. How do I port in a C library so I can use things like printf? I'm looking to ...
1
vote
3answers
143 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
96 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 ...
5
votes
2answers
126 views
Self contained C routine to print string
I would like to make a self contained C function that prints a string. This would be part of an operating system, so I can't use stdio.h. How would I make a function that prints the string I pass to ...
1
vote
3answers
75 views
How can assembly work on an Operating System?
if the kernel takes control of the system, how can assembly language work?
Assembly language is introduced as a collection of mnemonics that a computer "understands"
and various macros to make ...
0
votes
3answers
59 views
Memory protection on an OS
In general,
I know that a process can't write to a memory (in its addresses space) that has a protection that doesn't allow writing.
But what checks whether the process can do this? Does any assembly ...
1
vote
1answer
107 views
To what extent are interrupts supported in Win32?
To what extent are interrupts supported in Win32 beyond processor definitions? For example, x86 machines define at least 18 interrupts, including traps such as the breakpoint trap (INT 3). The other ...
1
vote
2answers
104 views
How are stacks in windows x86 stack defined?
First I'm going to demonstrate a poor understanding of the stack, and then I'm going to ask a mildly coherent question that can't be answered well because the question isn't specific enough to elicit ...
0
votes
2answers
177 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
110 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 ...
0
votes
4answers
79 views
Looking for learning materials for low-level programming languages [closed]
I wish to study bare-metal programming for writing drivers and firmware and other operating system stuff, but I cannot for the life of me find any good learning materials for learning those languages. ...
2
votes
3answers
136 views
Experimental OS in assembly - can't show a character on the screen (pmode)
I hope there's some experienced assembly/os developer here, even if my problem is not a huge one.
I am trying to play with assembly and create a small operating system. In fact, what I want is a ...
2
votes
1answer
117 views
“virtual address” in dumpbin output of a dll
1)
In dumpbin output of a dll, I see below attribute "virtual address" under code section
SECTION HEADER #1
.text name
100C virtual size
1000 virtual address (1C001000 to 1C00200B)
1200 size of raw ...
3
votes
2answers
87 views
How to Write GRUB stage1.S in NASM?
I am trying to write a multi stage boot loader using NASM and gcc.
For this purpose I am referring grub boot loader source.
I have written a stage1 loader, but stuck at over writing partition
tables ...
4
votes
1answer
50 views
.CAT file in MikeOS
I'm making a custom OS based on MikeOS. In the MikeOS .iso, there is a file called BOOT.CAT. If I build a custom version, will I need that file to make my OS bootable? If yes, what's in it and how do ...
0
votes
1answer
157 views
How would I go about learning OS-based hacking? [closed]
Firstly I would like to say I apologize if this is something stupid to ask.
I would rather have an opinion from someone with experience rather than go out and attempt to learn myself.
I'm quite ...
0
votes
2answers
99 views
Java OS Questions [closed]
Okay, Ive been looking into Assembly language.
I already know how to program in java.
I read online that it is possible to write an OS in Java if you can provide enough
assembly code to support a Java ...
0
votes
1answer
68 views
how do i know what is the address of instruction running by operating system?
I want to know what instruction is running by os and what is the address of that instruction?
0
votes
2answers
209 views
Booting a home-made operating system
So a couple days ago, I ventured into the uncharted territory of OS development. As a kind of a "Hello, World" program, I created this bootloader in assembly:
...
0
votes
0answers
172 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 ...
1
vote
1answer
116 views
How are multiple CPU Fetch Execute cycles synchronised?
TSET is the indivisible machine code instruction that does several things. Consider its logic as follows:
TSET(X)
if (x == 0) {
x = 1;
return true;
} else
return false;
It is, according ...
1
vote
2answers
62 views
Do OS APIs use interrupts?
I mean, deep down in the core of an Operating System API, is there an interrupt 'call' for each basic function a program requests from the OS?
-4
votes
1answer
108 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 ...
1
vote
1answer
113 views
x86 Clearing IRQ mask hangs OS
I am developing an OS and I am trying to get a PIC timer working. It is a 32 bit OS running in protected mode. This code hangs the OS , (I have no idea why , that is what I am trying to find out). I ...
1
vote
0answers
459 views
Creating a custom TI 84 plus graphing calculator Operating System (OS)
I am starting a project in which I will be making a new/editing the standard TI 84 Plus Calculator OS. I am planning on only changing a few things that slow it down and are not neccesarry for me. (EX: ...
2
votes
3answers
185 views
Is assembly strictly required to make the “lowest” part of an operating system?
Im a mid-level(abstraction) programmer, and some months ago i started to think if i should reduce or increase abstraction(i've chosen to reduce).
Now, i think i've done most of the "research" about ...
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
1answer
116 views
No bootloader found on bootable medium
I'm currently playing with mkisofs, dd and assembly. I've created simple bootloader:
BITS 16
;-------------------
;SIMPLE BOOTLOADER
;-------------------
start:
mov ax, 0x07C0
mov ds, ax
...
0
votes
1answer
243 views
FATAL: No bootable medium found
I have small problem. I have made very simple bootloader. After it's creation I created new empty .iso file.
mkisofs -o cd.iso content
Then I used Okteta editor and I filled first 512 bytes with ...
0
votes
2answers
169 views
Do all windows based programs use the windows API? How are programs made without it? [closed]
I've been programming for a few years, and I know how to create my own complex methods using pre-existing/standard libraries. I was always wondering (Java for example) how is a JFrame created when ...
1
vote
2answers
133 views
What would be the simplest bootloader? [closed]
How can I make a very simple bootloader that just loads one file? I don't need all the error checking and the verification, just the file loading. What would be the simplest way?
0
votes
2answers
123 views
stack pointer and segmentation [duplicate]
Possible Duplicate:
How does a stack memory increase?
let's think of an OS using segmentation.
My question is : does the os intrecepts every changes of the stack pointer
and instanly ( or ...
4
votes
4answers
232 views
Pure assembly - no linked C functions
I want to try to write an operating system in assembly. PLEASE, don't just say "Idiot, you have to get a lot better at %s, %s, %s, %s, etc to even think about that." I know it's normally not a ...
-9
votes
1answer
215 views
How does one make an operating system in Basic? [closed]
To make any operating system you need crucial bits written in Assembly. My question is, how do you then start making the rest of the OS, once you've got all the fundamental bits down, with Basic or C? ...
3
votes
2answers
110 views
disassembler showing different instructions
Was just reading about different algos disassemblers use to identify binary as assembly instructions. Opened a program in different disassemblers, some showed specific portions of the program as code ...
0
votes
2answers
143 views
What assembler would be best fit to program an OS from scratch, with execution performance prioritized? [closed]
I am not fit to program an OS under any circumstances, but this is hypothetical.
I want to create a simple operating system from almost absolute scratch in assembly language. With great ambitions in ...

