bios

ASP.net get hardware information

六眼飞鱼酱① 提交于 2021-01-04 15:23:05
问题 If I create an ASP.net page, am I able to get the current users CPUID and BIOS serial number? Or is that not allowed because of security? I currently have a Visual Basic.net application that gets these values, I am just wondering if I can do the same thing on a web page. 回答1: In a nut shell, no you cannot get this information using just a regular html & JavaScript web page. That's not however, to say that it's not possible. If your client computer has Java, Flash or Silver-light installed

Reading more sectors than there are on a track with int 13h

偶尔善良 提交于 2020-12-11 08:55:16
问题 What is the order int 13h with ah=02h will read 19 sectors starting at (C, H, S) = (0, 0, 1) provided a (floppy) disk geometry of 2 heads, 18 sectors per track and 80 tracks per side. Or, more generally, what happens when it reaches the end of track 0, head 0? Does it go to track 1 or head 1? Does it even work properly in this case? EDIT: Wait.. is this actually like hours, minutes, seconds? If we reach the end of the track (S is greater than 18), then H is increased? 回答1: Modern BIOSes

Reading more sectors than there are on a track with int 13h

China☆狼群 提交于 2020-12-11 08:54:03
问题 What is the order int 13h with ah=02h will read 19 sectors starting at (C, H, S) = (0, 0, 1) provided a (floppy) disk geometry of 2 heads, 18 sectors per track and 80 tracks per side. Or, more generally, what happens when it reaches the end of track 0, head 0? Does it go to track 1 or head 1? Does it even work properly in this case? EDIT: Wait.. is this actually like hours, minutes, seconds? If we reach the end of the track (S is greater than 18), then H is increased? 回答1: Modern BIOSes

difference of 'INT' instruction between Linux and Windows

一世执手 提交于 2020-11-29 10:13:48
问题 I write some code to make my own operating system and study x86 assembly language, too. While studying x86 assembly language, I start wondering about interrupt. Look at below assembly code: mov ah, 2 mov dl, 'A' int 0x21 This code prints 'A' to the screen. it is for MS-DOS. mov eax, 1 mov ebx, 0 int 0x80 This code makes program to exit. it is for Linux. The last one: mov ah, 2 mov al, 1 mov ch, 0 mov cl, 2 mov dh, 0 mov dl, 0 int 0x13 I wrote this code to copy kernel code from disk. This code

difference of 'INT' instruction between Linux and Windows

独自空忆成欢 提交于 2020-11-29 10:07:06
问题 I write some code to make my own operating system and study x86 assembly language, too. While studying x86 assembly language, I start wondering about interrupt. Look at below assembly code: mov ah, 2 mov dl, 'A' int 0x21 This code prints 'A' to the screen. it is for MS-DOS. mov eax, 1 mov ebx, 0 int 0x80 This code makes program to exit. it is for Linux. The last one: mov ah, 2 mov al, 1 mov ch, 0 mov cl, 2 mov dh, 0 mov dl, 0 int 0x13 I wrote this code to copy kernel code from disk. This code