Search found 6 matches
- Wed Nov 11, 2009 1:45 pm
- Forum: C and C++
- Topic: Linked Code in external File
- Replies: 20
- Views: 161260
Re: Linked Code in external File
@andrew Ok I understood... BUT If I want do draw pixels on the screen: name "pixel" org 100h mov ah, 0 ; set display mode function. mov al, 13h ; mode 13h = 320x200 pixels, 256 colors. int 10h mov cx, 10 ; column mov dx, 20 ; row mov al, 15 ; white mov ah, 0ch ; put pixel int 10h ret How can I manag...
- Tue Nov 10, 2009 4:05 pm
- Forum: C and C++
- Topic: Linked Code in external File
- Replies: 20
- Views: 161260
Re: Linked Code in external File
Thx, this helped a lot.
2 Thing to ask left:
Yes I know, I'm onerous. Sorry :S
1. Is this NeptuneOS a OS to execute Dos Apps?
2. This attributes you're Using: INIAPI & INISYSAPI, what are they about?
THX
phillB
2 Thing to ask left:
Yes I know, I'm onerous. Sorry :S
1. Is this NeptuneOS a OS to execute Dos Apps?
2. This attributes you're Using: INIAPI & INISYSAPI, what are they about?
THX
phillB
- Mon Nov 09, 2009 6:32 pm
- Forum: C and C++
- Topic: Linked Code in external File
- Replies: 20
- Views: 161260
Re: Linked Code in external File
Yea i'm very interrested.
THX phill
THX phill
- Mon Nov 09, 2009 5:09 pm
- Forum: C and C++
- Topic: Linked Code in external File
- Replies: 20
- Views: 161260
Re: Linked Code in external File
Thx to Andrew and Mike, 2 Things to ensure that we are meaning the same. 1. I dont want to insert öäü or é è or smth like these letters. i only want to change the z & the y letter. Why can you print smth on the Monitor, if you dont use Interrupts? I realy dont understand...I cant read all of your Tu...
- Sun Nov 08, 2009 5:03 pm
- Forum: C and C++
- Topic: Linked Code in external File
- Replies: 20
- Views: 161260
Re: Linked Code in external File
Thanx for ur fast reply. Yea I've two another Questions. 1. I just tried to add this inline Assembly in ur Demo21 Project: void CursorHidden () { _asm mov cx, 0x2000 _asm mov ah, 1 _asm int 0x10 } but the Curser just dont want to DIE . 2. I tried to change the Keyboard Template in ur Projects to Ger...
- Sat Nov 07, 2009 7:09 pm
- Forum: C and C++
- Topic: Linked Code in external File
- Replies: 20
- Views: 161260
Linked Code in external File
Hy guys, I'm developing OSs for 3 Jears now, and I've red all ur Tut's with Interrest. Now first: a praise for the Tutorial Creators. 2nd: My Question: I am trying to develop a System, who gets a piece of code out of another File, and executes it. Like the LoadLib Functions of Windows. I try to make...