From owner-freebsd-hackers@FreeBSD.ORG Mon Aug 4 08:50:53 2003 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0CBC37B401 for ; Mon, 4 Aug 2003 08:50:53 -0700 (PDT) Received: from hysteria.spc.org (hysteria.spc.org [195.206.69.234]) by mx1.FreeBSD.org (Postfix) with SMTP id 192F143F3F for ; Mon, 4 Aug 2003 08:50:52 -0700 (PDT) (envelope-from bms@hysteria.spc.org) Received: (qmail 28680 invoked by uid 5013); 4 Aug 2003 15:48:16 -0000 Date: Mon, 4 Aug 2003 16:48:16 +0100 From: Bruce M Simpson To: pat bey Message-ID: <20030804154816.GA27970@spc.org> Mail-Followup-To: Bruce M Simpson , pat bey , freebsd-hackers@freebsd.org References: <20030802195041.36168.qmail@web41201.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030802195041.36168.qmail@web41201.mail.yahoo.com> User-Agent: Mutt/1.4.1i Organization: SPC cc: freebsd-hackers@freebsd.org Subject: Re: Assembly interrupts and Developers handbook X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Aug 2003 15:50:54 -0000 On Sat, Aug 02, 2003 at 12:50:41PM -0700, pat bey wrote: > First I would like to know where I can buy a copy of the FreeBSD Developer's Handbook. > Nice to have a handbook that I can hold in my hand. > > Secondly, What can I find a list of other interrupts within FreeBSD like the int 80h. Or is this the only interrupt. Like example interrupt for video stuff, disk access ....etc. .etc FreeBSD doesn't use interrupt vectors for that sort of thing; it's not DOS. You should always use the system calls for manipulating shared resources. It is possible to call the video BIOS under certain circumstances from a user process, but this is done through a v86 monitor, whilst in v86 mode; but generally, you should use the syscons(4) driver or Xlib if you wish to use graphics. The Developer's Handbook covers most of these topics. BMS