User TURBOxSPOOL - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T00:33:10Z http://stackoverflow.com/feeds/user/65928 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/888603/why-would-an-end-of-interrupt-for-the-master-pic-cause-a-triple-fault-reboot 1 Why would an end-of-interrupt for the master PIC cause a triple fault (reboot)? TURBOxSPOOL 2009-05-20T15:22:42Z 2009-12-03T10:00:03Z <p>Ok, in school we are developing an operating system. My project has been to develop an ATA hard disk driver. I thought I had my interrupt service routine working quite well when my professor pointed out that I was only sending end-of-interrupt commands to the slave PIC, and not the master as well.</p> <p>My problem is that whenever I send the end-of-interrupt to the master PIC, it causes a triple fault which then causes my system to reboot. Now I have un/commented a bunch of lines and it appears that whenever the function to send the end-of-interrupt to the master PIC is left in the code I get the triple fault.</p> <p>Now I am quite sure of the following:</p> <ol> <li>interrupts are disabled upon entering my ISR</li> <li>I am properly sending the end-of-interrupt byte (class tested)</li> <li>I am not re-acknowledging the same interrupt</li> </ol> <p>This has been causing massive frustration, so I am hoping that someone can give me some guidance without needed to see our code.</p> <p>Thanks!</p> http://stackoverflow.com/questions/778121/proper-way-to-access-registers-in-a-pci-configuration-space 0 Proper way to access registers in a PCI configuration space TURBOxSPOOL 2009-04-22T16:32:10Z 2009-06-23T08:20:16Z <p>When you need to access registers in the PCI configuration space, do you simply need to used built-in BIOS functions to read/write DWORDs into the configuration space?</p> <p>For example, if I am trying to use an IDE controller that is on B0:D31:F1 do I proceed to read/write the configuration register using that BDF as the parameters to the BIOS functions? So if I wanted to get the vendor id I would read the first DWORD in a given BDF?</p> <p>Or am I just way off base?</p> <p>EDIT:</p> <p>In the PCI BIOS specification, I have been looking over the definitions of the BIOS functions for reading and writing words into the configuration space. Which I believe means that I can write into the registers at various offsets within the configuration space. I guess my question is, is this the correct way of accessing these registers at this level?</p> http://stackoverflow.com/questions/63668/confessions-of-your-worst-wtf-moment-what-not-to-do/947915#947915 2 Answer by TURBOxSPOOL for Confessions of your worst WTF Moment. (What not to do.) TURBOxSPOOL 2009-06-03T23:58:05Z 2009-06-03T23:58:05Z <p>While I was working on my coop (paid internship in college) I was developing a small testing framework which queried a database and generated an HTML page with test results. One day my manager had planned to show some of our work with others at the company. I forget exactly what it was, but I apparently did something to screw up the current tests <em>immediately</em> before the meeting.</p> <p>So, during the meeting when the time came to show everyone the test results page, instead of showing a bunch of 'green' test results (results were color coded) <em>everything</em> was red which meant that all the tests were failing, and very quickly (the test programs were failing to execute).</p> <p>Needless to say I learned a hard lesson that you should never make any changes to a system before a demonstration without verifying that everything is still working correctly. I was quite embarrassed. </p> http://stackoverflow.com/questions/886005/how-could-an-assembly-outb-function-cause-a-triple-fault 0 How could an assembly OUTB function cause a triple fault? TURBOxSPOOL 2009-05-20T03:24:28Z 2009-06-01T17:34:23Z <p>In my systems programming class we are working on a small, simple hobby OS. Personally I have been working on an ATA hard disk driver. I have discovered that a single line of code seems to cause a fault which then immediately reboots the system. The code in question is at the end of my interrupt service routine for the IDE interrupts. Since I was using the IDE channels, they are sent through the slave PIC (which is cascaded through the master). Originally my code was only sending the end-of-interrupt byte to the slave, but then my professor told me that I should be sending it to the master PIC as well.</p> <p>SO here is my problem, when I un-comment the line which sends the EOI byte to the master PIC, the systems triple faults and then reboots. Likewise, if I leave it commented the system stays running.</p> <pre><code>_outb( PIC_MASTER_CMD_PORT, PIC_EOI ); // this causes (or at least sets off) a triple fault reboot _outb( PIC_SLAVE_CMD_PORT, PIC_EOI ); </code></pre> <p>Without seeing the rest of the system, is it possible for someone to explain what could possibly be happening here?</p> <p>NOTE: Just as a shot in the dark, I replaced the _outb() call with another _outb() call which just made sure that the interrupts were enable for the IDE controller, however, the generated assembly would have been almost identical. This did not cause a fault.</p> <p>*_outb() is a wrapper for the x86 OUTB instruction.</p> <p>What is so special about my function to send EOI to the master PIC that is an issue?</p> <p>I realize without seeing the code this may be impossible to answer, but thanks for looking!</p> http://stackoverflow.com/questions/931061/if-you-had-the-choice-what-field-would-you-really-like-to-work-in/931069#931069 1 Answer by TURBOxSPOOL for If you had the choice, what field would you really like to work in ? TURBOxSPOOL 2009-05-31T01:57:47Z 2009-05-31T01:57:47Z <p>Aside from dramatic professions, such as a Formula 1 driver and an astronaut, I would love to be a street car tester/journalist.</p> <p>Imagine being paid to take a brand spanking new Ferrari to its limits (or try to) around a race track. That sounds like fun.</p> http://stackoverflow.com/questions/931057/what-happens-if-another-interrupt-is-raised-before-the-first-interrupt-action-is/931062#931062 0 Answer by TURBOxSPOOL for What happens if another interrupt is raised before the first interrupt action is completed? TURBOxSPOOL 2009-05-31T01:53:03Z 2009-05-31T01:53:03Z <p>Well, if interrupts were not disabled after the first interrupt, the second will cause your interrupt service routine to be called again. You must make sure interrupts get disabled to avoid this decidedly undesirable behavior.</p> <p>So, if your interrupt service routine is doing its thing, and then another interrupt occurs, it will be just as if you were doing anything else: the corresponding interrupt routine will be called.</p> <p>On the Intel architecture, the "cli" instruction will disable interrupts, and "sti" will enable them again.</p> http://stackoverflow.com/questions/266569/whats-your-first-program-that-you-were-proud-of/891539#891539 0 Answer by TURBOxSPOOL for What's your first program that you were proud of? TURBOxSPOOL 2009-05-21T05:44:39Z 2009-05-21T05:44:39Z <p>Well, I think the project that I just completed today could qualify for this. Even though I am nearing the end of my degree, I felt very satisfied once I finally got things working.</p> <p>In our systems programming class we developed a very simple operating system which we then extended as smaller teams. My chosen project was to develop a hard disk driver, which I can easily say was one of the most difficult and yet rewarding programs that I had written in my short programming career. While it is not a fully featured driver, the code was written in only a few weeks with a full load of other courses, so I was very proud to actually get it working in time for our final demonstration to the professor.</p> <p>Writing device drivers and operating system development in general has always been a major interest of mine, so this was an awesome project to do. I was ecstatic when I finally had my driver operating correctly and I could read/write without error to the disk.</p> <p>While it was fun, I must say it is rather depressing when working with hardware and serious errors occur and you have absolutely no feedback as to what is happening.</p> http://stackoverflow.com/questions/811074/what-is-the-coolest-thing-you-can-do-in-10-lines-of-simple-code-help-me-inspir/880123#880123 1 Answer by TURBOxSPOOL for What is the coolest thing you can do in <10 lines of simple code? Help me inspire beginners! TURBOxSPOOL 2009-05-18T22:26:52Z 2009-05-18T22:26:52Z <p>I think any sort of shell script which can do something useful is a great way to show someone the power of programming. Being able to spend 10-20 minutes on a small script that will automate another task and save you countless hours is very impressive, imo.</p> <p>For example, I once wrote a simple Perl script to convert mp3 files in one directory to another format and them burn them to a cd. You invoke the script with the path to a directory of MP3's and it burns the cd. At least I was impressed at the time.</p> http://stackoverflow.com/questions/874982/how-to-compute-optimal-paths-for-traveling-salesman-bitonic-tour 1 How to compute optimal paths for traveling salesman bitonic tour? TURBOxSPOOL 2009-05-17T16:54:10Z 2009-05-18T03:46:39Z <p><strong>UPDATED</strong></p> <p>After more reading, the solution can be given with the following recurrence relation:</p> <pre><code>(a) When i = 1 and j = 2, l(i; j) = dist(pi; pj ) (b) When i &lt; j - 1; l(i; j) = l(i; j - 1) + dist(pj-1; pj) (c) When i = j - 1 and j &gt; 2, min 1&lt;=k&lt;i (l(k; i) + dist(pk; pj )) </code></pre> <p>This is now starting to make sense, except for part C. How would I go about determining the minimum value k? I suppose it means you can iterate through all possible k values and just store the minimum result of ( l(k,i) + dist(pk,pj)?</p> <p><hr /></p> <p>Yes, definitely a problem I was studying at school. We are studying bitonic tours for the traveling salesman problem.</p> <p>Anyway, say I have 5 vertices {0,1,2,3,4}. I know my first step is to sort these in order of increasing x-coordinates. From there, I am a bit confused on how this would be done with dynamic programming.</p> <p>I am reading that I should scan the list of sorted nodes, and maintain optimal paths for both parts (initial path and the return path). I am confused as to how I will calculate these optimal paths. For instance, how will I know if I should include a given node in the initial path or the return path, since it cannot be in both (except for the endpoints). Thinking back to Fibonacci in dynamic programming, you basically start with your base case and work your way forward. I guess what I am asking is how would I get started with the bitonic traveling salesman problem?</p> <p>For something like the Fibonacci numbers, a dynamic programming approached is quite clear. However, I don't know if I am just being dense or what but I am quite confused trying to wrap my head around this problem.</p> <p>Thanks for looking!</p> <p>NOTE: I am not looking for complete solutions, but at least some good tips to get my started. For example, if this were the Fibonacci problem, one could illustrate how the first few numbers are calculated. Please let me know how I can improve the question as well.</p> http://stackoverflow.com/questions/875531/how-to-implement-this-equation-in-java 1 How to implement this equation in Java? TURBOxSPOOL 2009-05-17T21:20:21Z 2009-05-18T03:45:44Z <p>Ok, this is more of a follow-up question: <a href="http://stackoverflow.com/questions/874982/how-to-compute-optimal-paths-for-traveling-salesman-bitonic-tour">http://stackoverflow.com/questions/874982/how-to-compute-optimal-paths-for-traveling-salesman-bitonic-tour</a></p> <p>First of all, for the bitonic tour of the traveling salesman problem I have the following recurrence relation:</p> <pre><code>(a) When i = 1 and j = 2, l(i; j) = dist(pi; pj ) (b) When i &lt; j - 1; l(i; j) = l(i; j - 1) + dist(pj-1; pj) (c) When i = j - 1 and j &gt; 2, min 1&lt;=k&lt;i (l(k; i) + dist(pk; pj )) </code></pre> <p>l is a table of previous results. My question is with part C: Assuming l(k,i) and dist(pk,pj) are defined, how would I implement part C in java? My initial thought was that I iterate over k from 1 to i and store the minimum result of (l(k,i) + dist(pk,pj)), but I don't think that is right.</p> <p>for example:</p> <p><pre><code> for (int k = 1; k &lt; i; ++k) { tmp = l(k,i) + dist(pk,pj); if (tmp &lt; min) { min = tmp; } }</p> <p>// min is the result </pre></code></p> <p>This may seem like a stupid question (and probably is, I am severely lacking sleep), but I am hoping someone can help out.</p> <p>Thanks!</p> http://stackoverflow.com/questions/871566/why-do-you-obfuscate-your-code/871729#871729 0 Answer by TURBOxSPOOL for Why do you obfuscate your code? TURBOxSPOOL 2009-05-16T04:56:23Z 2009-05-16T04:56:23Z <p>Looking at some of the code I wrote for my disk driver project makes me question what it means to be obfuscated.</p> <pre><code> ((int8_t (*)( int32_t, void * )) hdd-&gt;_ctrl)( DISK_CMD_REQUEST, (void *) dr ); </code></pre> <p>Or is that just system programming in C? Or should that line be written differently? Questions...</p> http://stackoverflow.com/questions/775373/can-some-explain-where-i-would-locate-the-start-of-this-ide-controller-register-a/871722#871722 0 Answer by TURBOxSPOOL for Can some explain where I would locate the start of this IDE controller register address map in memory? TURBOxSPOOL 2009-05-16T04:49:49Z 2009-05-16T04:49:49Z <p>Turns out I never had to find an actual address, but the bus/device/function number of the IDE controller.</p> <ol> <li>enumerate through all possible PCI bus/device/function combinations searching for the vendor and device id of the IDE controller</li> <li>once found, simply write the CONFIG_ADDRESS port, and read the info back from CONFIG_DATA</li> </ol> <p>Basically, once you have a bus, device, and function (along with a register offset), you can write that info into the PCI CONFIG_ADDRESS register (cf8h) and read the register contents from CONFIG_DATA (cfch).</p> http://stackoverflow.com/questions/775373/can-some-explain-where-i-would-locate-the-start-of-this-ide-controller-register-a 0 Can some explain where I would locate the start of this IDE controller register address map in memory? TURBOxSPOOL 2009-04-22T01:23:46Z 2009-05-16T04:49:49Z <p>I have been pouring through documentation as part of my quarter long project to develop a simple disk driver. At the moment I am trying to map out the various atapi and IDE controller registers implemented inside the Intel 82801EB IO controller.</p> <p>First of all, the document I am referring to: www.intel.com/assets/pdf/datasheet/252516.pdf</p> <p>On page 415, table 154 shows the offsets of various configuration registers. This may seem like a silly question, but how do I find where they are offset <em>from</em>? I was expecting to find some sort of fixed base address reserved for these registers. From there I would be able to use this table build my driver.</p> <p>For example, on table 154 the PCI command register is located at offsets 04-05h. The register is detailed on page 417, which I believe I am understanding. However, where is the base address that this register is located 4 bytes from?</p> <p>Update: Now, after looking back at the fixed IO map for the D865PERL board that we are using, it says that 0000-00ffh is reserved by the B865PERL, and to refer to the ICH5 data sheet for dynamic addressing information. Which I believe may be used for the IDE controller register from table 154 I mentioned above. At this point I emailed my professor but I am still trying to figure out where these are located.</p> <p>Thanks for looking!</p> http://stackoverflow.com/questions/858657/how-do-i-configure-an-ata-hard-disk-to-start-generating-interrupts 3 How do I configure an ATA hard disk to start generating interrupts? TURBOxSPOOL 2009-05-13T15:31:09Z 2009-05-16T01:58:41Z <p><strong>RESOLVED</strong></p> <p>After much confusion and frustration, I finally got my hard disk to interrupt. :D It basically came down to the fact that I kept reading the status register instead of the <em>alternate</em> status register. A few other things were messed up to boot, but the point is my hard disk driver is finally starting to take shape. Now, for others I will leave the original post.</p> <p>P.S. For further clarification, I didn't need to issue any sort of reset command. All I did was the following:</p> <ol> <li>Select the device (didn't want to kill the Solaris OS on the other disk)</li> <li>clear the nIEN bit in the DEVICE CONTROL register</li> <li>issue an IDENTIFY DEVICE command***</li> </ol> <p>Actually, I am not sure if the IDENTIFY DEVICE command is need because I left the lab happy before I could test the code without issuing the command. However, the main point is that I needed to be sure to read the <em>alternate status</em> register and have the nIEN bit cleared without the need for a reset. The BIOS apparently takes care of most stuff.</p> <p><hr /></p> <p>I am currently trying to write a disk driver for a hobby OS being developed at my school. I currently have routines to read/write data in the PCI configuration space and assembly routines to do port IO with the various registers defined by ATA/ATAPI-7. Now, my question is, specifically how will I get an IDE hard drive to start generating interrupts? I have been looking through all this documentation and is hasn't become clear to me what I am doing wrong.</p> <p>Can someone explain exactly what causes an IDE hard drive to start generating interrupts? I already have an interrupts service routine ready to test, but am having difficulty getting the interrupts in the first place. Can this be accomplished through the ATA SOFT RESET?</p> <p>Thanks!</p> <p>UPDATE: Ok, I was able to get the secondary channel, an ATAPI CDROM to generate interrupts by setting the SRST bit in the DEVICE CONTROL register for a soft reset. This does not work for the hard disk on the primary channel. What I have noticed so far is that when I set the SRST bit for the HDD, it sets the BSY bit and leaves it set. From there I don't know what to do.</p> http://stackoverflow.com/questions/778121/proper-way-to-access-registers-in-a-pci-configuration-space/809707#809707 1 Answer by TURBOxSPOOL for Proper way to access registers in a PCI configuration space TURBOxSPOOL 2009-05-01T00:23:25Z 2009-05-16T00:03:14Z <p>After reading the PCI specification, I simply need to call the PCI BIOS functions through a given interrupt vector (1Ah). However, this is complicated by the PCI configuration which must happen before hand.</p> <p>The PCI configuration space appears to not use an explicit address for access, but BIOS function calls.</p> <p>EDIT: Actually, turns out the BIOS does a lot more than I knew. All I had to do was enumerate the PCI bus until I found the IDE controller's device and vendor ID. The only assembly needed was the in/out port wrappers.</p> http://stackoverflow.com/questions/545093/can-someone-explain-this-directly-assembled-x86-jmp-opcode 5 Can someone explain this directly assembled x86 JMP opcode? TURBOxSPOOL 2009-02-13T07:49:39Z 2009-05-14T16:58:29Z <p>At school we have been using a bootstrap program to run stand-alone programs without an operating system. I have been studying this program and when protected mode is enabled there is a far jump executed by directly assembling the opcode and operands as data within the program. This was for the GNU assembler:</p> <pre><code> /* this code immediately follows the setting of the PE flag in CR0 */ .byte 0x66, 0xEA .long TARGET_ADDRESS .word 0x0010 /* descriptor #2, GDT, RPL=0 */ </pre></code> First of all, why would one want to do this (instead of the instruction mnemonic)? I have been looking at the Intel manuals, but am still a little confused by the code. Specifically in Volume 2A, page 3-549, there is a table of opcodes. The relevant entry: <pre> EA *cp* JMP ptr16:32 Inv. Valid Jump far, absolute, address given in operand </pre> <p>The actual opcode is obvious, but the the first byte, 0x66, has me confused. Referring to the table in the Intel manual, the cp apparently means that a 6 byte operand will follow. And obviously 6 bytes follow in the next two lines. 0x66 encodes an 'Operand-size override prefix'. What does this have to do with the cp in the table? I was expecting there to be some hex value for the cp, but instead there is this override prefix. Can someone please clear this up for me?</p> <p>Here is a dump from od:</p> <pre> c022 **ea66 0000 0001 0010** ba52 03f2 c030 </pre> <p>TARGET_ADDRESS was defined as 0x00010000.</p> <p>I am also confused a bit by the significance of the last two bytes. However, that seems to be another question altogether. It is getting quite late, and I have been staring at code and the Intel manuals for hours, so I hope I got my point across.</p> <p>Thanks for looking!</p> http://stackoverflow.com/questions/808948/how-do-i-compile-assembly-routines-for-use-with-a-c-program-gnu-assembler 0 How do I compile assembly routines for use with a C program (GNU assembler)? TURBOxSPOOL 2009-04-30T20:39:50Z 2009-05-01T05:27:13Z <p>Hello!</p> <p>I have a set of assembly function which I want to use in C programs by creating a header file. For instance, if I have asm_functions.s which defines the actual assembly routines and asm_functions.h which has prototypes for the functions as well as some standard #define's I needed. My goal is to use a C program, say test_asm.c to call the assembly functions.</p> <p>asm__functions.h: <pre><code> #define ASM_CONST_1 0x80 #define ASM_CONST_2 0xaf</p> <p>uint8_t asm_foo( int, int, int ); </pre></code></p> <p>asm__functions.s: <pre><code> /* dont need this: #include "asm_functions.h" */</p> <p>.section .text .type asm_foo, @function asm__foo: /* asm code with proper stack manipulation for C calling conventions */ ret </pre></code></p> <p>test__asm.c: <pre><code> #include "asm_foo.h"</p> <p>int main() { uint8_t res = asm_foo( 1, 2, 3); return 0; } </pre></code></p> <p>In a situation like this what would be the proper way to compile a link the program? I was trying something like this:</p> <p><pre><code> gas -o asm_foo.o asm_foo.s gcc -o test_asm test_asm.c </pre></code></p> <p>But I still get a linker error from GCC saying that my assembly routine is undefined. I hope this contrived example is good enough to explain the situation.</p> <p>Thanks!</p> <p>EDIT:</p> <p>Here is a snippet of output when I compile with a single command: <pre><code> tja@tja-desktop:~/RIT/SP2/latest$ gcc -o test_pci pci_config.s test_pci.c /tmp/ccY0SmMN.o: In function <code>_pci_bios_read_byte': (.text+0x8): undefined reference to </code>PCI_FUNCTION_ID' /tmp/ccY0SmMN.o: In function <code>_pci_bios_read_byte': (.text+0xa): undefined reference to </code>READ_CONFIG_BYTE' /tmp/ccY0SmMN.o: In function <code>_pci_bios_read_byte': (.text+0x18): undefined reference to </code>PCI_BIOS_FUNCTION_INT' /tmp/ccY0SmMN.o: In function <code>_pci_bios_read_byte': (.text+0x1b): undefined reference to </code>BAD_REGISTER_NUMBER' /tmp/ccY0SmMN.o: In function <code>_pci_bios_read_word': (.text+0x30): undefined reference to </code>PCI_FUNCTION_ID' ... </pre></code></p> <p>All of those, such as PCI_FUNCTION_ID, are defined in my header file, which is included by the C program. When I compile the assembly code by itself there are no errors.</p> http://stackoverflow.com/questions/809696/how-to-do-a-call-far-x86-to-a-given-32-bit-address 2 How to do a call far (x86) to a given 32-bit address? TURBOxSPOOL 2009-05-01T00:18:14Z 2009-05-01T01:31:22Z <p>Ok, I need to perform a CALL FAR to the PCI BIOS service directory (32 bit mode) to verify that the PCI BIOS is present.</p> <p>NOTE: I am developing a simple disk driver for a simple operating system we are developing a college. I understand that this is very specific, but I will be doing all this from kernel code.</p> <p>Suppose I already found the relevant address. What is the proper assembly language to perform a far call to a given address? Can someone post some assembly code that does a far call to a given 32-bit address? The syntax of the examples I have seen so far has been confusing.</p> <p>Thanks!</p> <p>EDIT: In my specific case, I have already found the PCI BIOS service directory, which gives me the physical address (32-bit). Given this 32-bit address, what type of far call will I need? For example, I was reading in the Intel manuals that far calls can change tasks and what not. How will I know what I have to do to far call this PCI BIOS service directory physical address?</p> <p>UPDATE:</p> <p>Here is some code I found which is confusing me (inline): <pre><code> <strong>asm</strong>("lcall (%%edi)" : "=a" (return_code), "=b" (address), "=c" (length), "=d" (entry) : "0" (service), "1" (0), "D" (&amp;bios32_indirect));</p> <p></pre></code></p> <p>I found that in this source file: <a href="http://www.pell.portland.or.us/~orc/Code/Archive/linux-1.2.13/arch/i386/kernel/bios32.c" rel="nofollow">http://www.pell.portland.or.us/~orc/Code/Archive/linux-1.2.13/arch/i386/kernel/bios32.c</a></p> <p>I think what I want to do is the equivalent of the above inline in actual assembly.</p> http://stackoverflow.com/questions/773199/how-do-i-identify-device-specific-interrupts-on-x86 3 How do I identify device specific interrupts on x86? TURBOxSPOOL 2009-04-21T15:32:39Z 2009-04-21T19:40:22Z <p>In the Intel software developers manual it says that interrupt vectors 32-255 are usually user defined for external IO devices. In my systems programming class I must develop a simple device driver. My question is how can I define a specific interrupt vector to be used for a specific device? Is this done with the BIOS?</p> <p>Note: we are developing a simple operating system so my situation is quite specific, however, in the end I need to understand how this all happens on an x86 system. Currently our system is set up so that a few interrupt vectors above 32 are assigned to devices like a serial port and keyboard. In reading the datasheet for the Intel 82801EB ICH5 IO controller, specifically the section concerning the 8259 PICs, it says that IRQ15 is the secondary IDE channel. How would that eventually be put on the stack as a interrupt vector?</p> <p>I may just be so confused that this question didn't make sense, so I apologize in advance.</p> <p>EDIT: So our systems programming class has a very simple OS, which has kernel routines for installing ISRs to handle specific interrupts given the vector number. In our class last quarter the professor gave us a header file that defined the keyboard as vector number 0x2c or something similar. I am trying to find out how to map the primary and/or secondary IDE channel interrupts to various ISRs using our kernel routines. For now, all of the unused interrupt vectors have a default handler that would print messages if an interrupt occurred, so IDE interrupts aren't even on at the moment, however that is another question.</p> http://stackoverflow.com/questions/773199/how-do-i-identify-device-specific-interrupts-on-x86/774243#774243 0 Answer by TURBOxSPOOL for How do I identify device specific interrupts on x86? TURBOxSPOOL 2009-04-21T19:34:25Z 2009-04-21T19:40:22Z <p>Well, I seem to have found the answer in our support code, specifically the PIC initialization routine. With the following code IRQ lines are mapped at offset 20h and 28h in the IDT for the master and slave PICs, respectively.</p> <p><code> /* ICW2: master offset of 20 in the IDT, slave offset of 28 */</p> <pre><code>__outb( PIC_MASTER_IMR_PORT, 0x20 ); __outb( PIC_SLAVE_IMR_PORT, 0x28 ); </code></pre> <p></code></p> <p>This means that the keyboard was mapped to vector number 2c and the primary and secondary channels will be mapped to 2e and 2f respectively. Some of you probably could have given me better answers had I asked the question better, but I appreciate the help anyway!</p> <p>Table 45 of the 82801EB ICH5 datasheet details the 8259's IRQ lines, and in my OS the master is simply loaded at offset 20h and the slave is 28h.</p> <p>Thanks!</p> http://stackoverflow.com/questions/721583/what-is-the-best-way-to-learn-x86-assembly-on-a-linux-platform/739552#739552 0 Answer by TURBOxSPOOL for What is the best way to learn x86 assembly on a Linux platform? TURBOxSPOOL 2009-04-11T05:08:22Z 2009-04-11T05:28:50Z <p>Even though many people I know at school hated this book, I will link it anyway:</p> <p><a href="http://rads.stackoverflow.com/amzn/click/0764579010" rel="nofollow">http://www.amazon.com/Professional-Assembly-Language-Programmer/dp/0764579010</a></p> <p>The main reason I used this book is because it uses x86 on Linux with the GNU assembler. That last point helped since I had to use that assembler in our school's lab, and if you aren't aware - the syntax is different from Intel syntax.</p> <p>Also, I would just add that learning how high level languages are compiled into assembly language really helped me move along.</p> http://stackoverflow.com/questions/568359/write-mbr-code/568384#568384 1 Answer by TURBOxSPOOL for Write MBR Code TURBOxSPOOL 2009-02-20T05:18:28Z 2009-02-20T05:18:28Z <p>I found a similar question which may help:</p> <p><a href="http://stackoverflow.com/questions/39503/modifying-the-mbr-of-windows">http://stackoverflow.com/questions/39503/modifying-the-mbr-of-windows</a></p> <p>However, you may want to elaborate on what you plan to do. As I have found out myself bootloader code can be quite tedious to work with. Also, I would certainly test this with a floppy if possible.</p> <p>As far as actually doing this all from Windows, I am a bit clueless. Just about all of my programming experience to this point has been under a Unix environment.</p> http://stackoverflow.com/questions/567928/becoming-a-multi-language-programmer/567955#567955 3 Answer by TURBOxSPOOL for Becoming a multi language programmer TURBOxSPOOL 2009-02-20T01:23:11Z 2009-02-20T01:23:11Z <p>I thought that the programming language concepts class I took in college really expanded my thought process when it comes to programming. We studied a number of different languages and programmed in all of them. It's amazing the perspective you gain when you study vastly different languages.</p> <p>For instance, we studied Perl, C w/ Flex/Bison, Scheme, Forth and Prolog. Those are pretty diverse languages. While we weren't able to get into too much detail with any of them, we solved similar problems in each. I feel that this was one of the best classes I have taken in my CS program.</p> <p>The book we used: <a href="http://www.cs.rochester.edu/~scott/pragmatics/" rel="nofollow">http://www.cs.rochester.edu/~scott/pragmatics/</a></p> <p>I guess what I am saying is that once you study how programming languages work, you understand things a bit better that you can concentrate your thought process on solving the problem.</p> http://stackoverflow.com/questions/563045/can-someone-explain-this-definition-of-the-dirent-struct-in-solaris 1 Can someone explain this definition of the 'dirent' struct in Solaris? TURBOxSPOOL 2009-02-18T22:04:15Z 2009-02-18T23:58:47Z <p>Recently I was looking at the 'dirent' structure (in dirent.h) and was a little puzzled by its definition.</p> <p>NOTE: This header file is from a Solaris machine at my school.</p> <pre><code> typedef struct dirent { ino_t d_ino; off_t d_off; unsigned short d_reclen; char d_name[1]; } dirent_t; </pre></code> Particularly the d_name field. How would this work in the operating system? If you need to store a null terminated string what good is an array of a single char? I know that you can get the address of an array by its first element but I am still confused. Obviously something is happening, but I don't know what. On my Fedora Linux system at home this field is simply defined as: <pre><code>char d_name[256]; </code></pre> <p>Now that makes a lot more sense for obvious reasons. Can someone explain why the Solaris header file defines the struct as it does?</p> http://stackoverflow.com/questions/558989/where-to-find-hardware-documentation-for-writing-device-drivers 4 Where to find hardware documentation for writing device drivers? TURBOxSPOOL 2009-02-17T22:22:25Z 2009-02-18T08:13:57Z <p>I have been studying device level programming and was curious what everyone's experience is as far as finding documentation for the hardware? For instance, in my systems programming class we wrote a basic serial IO driver which communicated with a terminal, and for that I read the documentation for the chip we were using which explains just about everything I needed to know. My question is, are these type of manuals always available on request? Or can someone point me to the right place to look? I would think that these manuals would always be available from the manufacturer, but that doesn't seem to be the case.</p> <p>As an example, I have a Logitech G5 mouse, which as far as I know doesn't have a Linux driver (to perform specific things like altering the DPI settings). If I wanted to write a driver, would Logitech supply me with the required documentation (as I can't find it on their site)? I understand that for many devices this type of documentation is always available, but it seems like it is impossible to find for others.</p> <p>Thanks for looking!</p> http://stackoverflow.com/questions/556714/how-does-the-stack-work-in-assembly-language/556903#556903 2 Answer by TURBOxSPOOL for How does the stack work in assembly language? TURBOxSPOOL 2009-02-17T13:57:36Z 2009-02-17T13:57:36Z <p>I think that main answer you are looking for has already been hinted at.</p> <p>When an x86 computer boots up, the stack is not setup. The programmer must explicitly set it up at boot time. However, if you are already in an operating system, this has been taken care of. Below is a code sample from a simple bootstrap program.</p> <p>First the data and stack segment registers are set, and then the stack pointer is set 0x4000 beyond that. <pre><code> movw $BOOT_SEGMENT, %ax movw %ax, %ds movw %ax, %ss movw $0x4000, %ax movw %ax, %sp </pre></code></p> <p>After this code the stack may be used. Now I am sure it can be done in a number of different ways, but I think this should illustrate the idea.</p> http://stackoverflow.com/questions/549248/do-programmers-usually-possess-the-wake-up-late-go-to-bed-late-personality-typ/549283#549283 1 Answer by TURBOxSPOOL for Do programmers usually possess the "wake up late, go to bed late" personality type? TURBOxSPOOL 2009-02-14T15:56:54Z 2009-02-14T15:56:54Z <p>While I do stay up late, I rarely sleep more than 8 hours. I feel as though I am wasting time if I do. I usually liked getting into work early (when I was on coop, finishing college right now) since I was able to leave work early. Plus, if I sleep late I think it only makes me feel more tired.</p> <p>My room-mate on the other hand (<em>looks over shoulder in disgust</em>) seems to regularly sleep for 10-12 hours.</p> http://stackoverflow.com/questions/548492/how-to-perform-low-level-io-with-a-usb-flash-drive-under-the-bios-compared-to-a 0 How to perform low-level IO with a USB flash drive under the BIOS (compared to a floppy)? TURBOxSPOOL 2009-02-14T04:39:23Z 2009-02-14T06:17:53Z <p>I have recently been studying some bootstrap code which was intended for use with a floppy drive. My goal is to modify the program so that it uses my USB flash drive. Now I see how the INT 13H function has been used with the floppy device, but I guess my question is, how will communicating with the USB drive differ?</p> <p>For example, here is a snippet of the floppy code (GNU assembler):</p> <pre><code> <pre><code> movb $0x00,%dl /* select 1st floppy */ /* later */ movw sec,%cx /* get sector number */ movw head,%dx /* get head number */ movw $0x0201,%ax /* read 1 sector */ int $0x13 </code></pre> <p></pre></code></p> <p>Now I have read that moving 0x80 into %dl will select the first HDD in the BIOS. In my particular bios I can change the drive order, which would include a USB drive. I am quite sure this is becoming BIOS dependant, but I was thinking that the order listed in the BIOS could correspond to the value I move into %dl. I need to track down some documentation...</p> <p>I am really unfamiliar with working with block devices as it is, can someone point me to a good place to start learning more?</p> <p>Thanks!</p> http://stackoverflow.com/questions/76364/what-is-the-single-most-effective-thing-you-did-to-improve-your-programming-skill/547348#547348 0 Answer by TURBOxSPOOL for What is the single most effective thing you did to improve your programming skills? TURBOxSPOOL 2009-02-13T19:33:16Z 2009-02-13T19:33:16Z <p>I would have to echo others answers here.</p> <p>I think the best way to really get to know something (for me) is to pick a topic that you are interested in and unfamiliar with. Then look at how others have done that while you try to replicate/enhance it.</p> <p>Currently, I have been very interested with low level systems programming, specifically the boot process of an x86. Looking at others bootstrap code has been immensely helpful in beginning to code my own.</p> http://stackoverflow.com/questions/1142579/any-faster-method-to-get-volume-serial-number/1146532#1146532 Comment by TURBOxSPOOL on Any faster method to get Volume Serial number ? TURBOxSPOOL 2009-07-18T04:10:07Z 2009-07-18T04:10:07Z How did you discover that was the problem? http://stackoverflow.com/questions/1077541/regular-expression-joke-explanation Comment by TURBOxSPOOL on Regular expression joke explanation TURBOxSPOOL 2009-07-03T04:03:04Z 2009-07-03T04:03:04Z At least the xkcd joke (<a href="http://xkcd.com/208/" rel="nofollow">xkcd.com/208</a>) is funny. Well, I think it is. In a nerdy sort of way. http://stackoverflow.com/questions/878181/is-programming-generally-an-overtime-exempt-field/879326#879326 Comment by TURBOxSPOOL on Is Programming generally an overtime exempt field? TURBOxSPOOL 2009-06-10T03:44:57Z 2009-06-10T03:44:57Z +1 for including a table in your response http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/219940#219940 Comment by TURBOxSPOOL on What was the strangest coding standard rule that you were forced to follow? TURBOxSPOOL 2009-06-05T00:24:01Z 2009-06-05T00:24:01Z The last one about the psychopath would get some people killed almost immediately. http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/224922#224922 Comment by TURBOxSPOOL on What was the strangest coding standard rule that you were forced to follow? TURBOxSPOOL 2009-06-04T23:57:53Z 2009-06-04T23:57:53Z The last sentence was great. How could someone be taken seriously when they make decisions like this? http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/220287#220287 Comment by TURBOxSPOOL on What was the strangest coding standard rule that you were forced to follow? TURBOxSPOOL 2009-06-04T23:56:01Z 2009-06-04T23:56:01Z Wasn't there an old shell that was written entirely like this? Basically to the point where it didn't even resemble C. http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/221510#221510 Comment by TURBOxSPOOL on What was the strangest coding standard rule that you were forced to follow? TURBOxSPOOL 2009-06-04T23:49:36Z 2009-06-04T23:49:36Z I think he meant that you would select all fields by default so you got all the 'reserve' fields as well, without needing to specify them all. http://stackoverflow.com/questions/941740/regex-need-help-with-greedy-quantifier Comment by TURBOxSPOOL on Regex: Need help with greedy quantifier TURBOxSPOOL 2009-06-02T20:32:04Z 2009-06-02T20:32:04Z Care to post the regex you are using? http://stackoverflow.com/questions/939465/what-does-the-term-legacy-database-mean/939477#939477 Comment by TURBOxSPOOL on What does the term legacy database mean? TURBOxSPOOL 2009-06-02T13:23:25Z 2009-06-02T13:23:25Z So in that sense is it similar to using 'legacy' with a codebase? For example, integrating a new module with legacy code. Basically old stuff that needs to be integrated/maintained, but nothing more specific than that? http://stackoverflow.com/questions/933445/a-better-linux-shell Comment by TURBOxSPOOL on A better Linux shell? TURBOxSPOOL 2009-06-01T05:02:46Z 2009-06-01T05:02:46Z Perhaps it is a way of staying within the Unix philosophy of using small tools which do specific things very well (as opposed to large tools which do everything poorly). http://stackoverflow.com/questions/933581/fastest-way-to-check-if-memory-is-zeroed Comment by TURBOxSPOOL on fastest way to check if memory is zeroed TURBOxSPOOL 2009-06-01T05:00:06Z 2009-06-01T05:00:06Z Perhaps your program could assume blocks are not cleared unless done so explicitly? What I mean is that if a block needs to be cleared, your program could take note of this and clear the data (and note that the block is clear). I guess I am just curious why you would want to go about this in the first place. http://stackoverflow.com/questions/933324/developer-salary-in-the-united-states Comment by TURBOxSPOOL on Developer Salary in the United States? TURBOxSPOOL 2009-06-01T02:14:05Z 2009-06-01T02:14:05Z I agree, definitely not programming related. http://stackoverflow.com/questions/933318/how-to-use-c-to-code-this-question Comment by TURBOxSPOOL on How to use C to code this question? TURBOxSPOOL 2009-06-01T02:07:25Z 2009-06-01T02:07:25Z You'll want to look into the math library (math.h) which has various functions like pow() which can raise a given base to a power. http://stackoverflow.com/questions/931061/if-you-had-the-choice-what-field-would-you-really-like-to-work-in/931069#931069 Comment by TURBOxSPOOL on If you had the choice, what field would you really like to work in ? TURBOxSPOOL 2009-05-31T03:50:49Z 2009-05-31T03:50:49Z Jeremy Clarkson's job was exactly what I had in mind. However, I would hope that if I did have his job that I would be more well dressed. hehe http://stackoverflow.com/questions/931146/what-do-you-tell-people-your-profession-is/931154#931154 Comment by TURBOxSPOOL on What do you tell people your profession is? TURBOxSPOOL 2009-05-31T03:49:22Z 2009-05-31T03:49:22Z Or he wishes he was making more money.