14 Aug, 2010

Could not read microcode

Articles related to could not read microcode

8086 Assembly Language Program to find the factorial upto 255!

http://digitalpbk.blogspot.com/2008/11/masm-assembly-factorial-program-big.html al,[di] mov [si],al mov [di],ah dec si inc di loop looskip:endmgeti macro local exit,get xor bx,bx mov dx,bx mov cx,00ahget: push bx ;Read character mov ah,01h int 21h xor ah,ah pop bx ;If enter stop cmp al,0dh jz exit sub al,30h ;Multply By 10 push ax mov ax,bx mul cx mov bx,ax pop ax ;add add bx,ax ;redo jmp getexit: mov ax,bxendmbignum_put macro var local put,en,nxt,exit lea si,var mov di,si mov cx,0200h add di,cx dec dien: cmp BYTE PTR [di],00h jne nxt dec di jmp ennxt: mov ah,02hput: mov dl ...
Published 3 years, 6 months ago

BASH Playlist handler and mpg123 interface

http://digitalpbk.blogspot.com/2008/05/bash-mp3-player-mpg123-sed-playlist.html song number [MAX $max]: ";read lineelif [ "$max" -eq 0 ]; thenexit 0fifor i in `seq 1 10`;do l=`echo "$line 0" | cut -s -d" " -f$i`echo "Playin : $l";if [ -z "$l" ] || [ "$l" -le 0 ]; then exit 0 #Exit herefifilename=`more +$l tpl.tmp | head -n 1`#echo "$filename"if [ "$l" -gt "$max" ]; then echo "Out of bounds $max "else echo "Playing $filename"mpg123 -Cv ...
Published 3 years, 11 months ago

Network Traffic Calculator using VC++ 6 on XP

http://digitalpbk.blogspot.com/2006/11/network-traffic-calculator-using-vc-6.html .bytes += bytes; if(ret.bytes >= 1024) { ret.bytes = 0; ret.kb ++; } if(ret.kb >=1024) { ret.mb ++; ret.kb =0; } return ret;}long FAR PASCAL WndProc( HWND hwnd,UINT msg,UINT wParam, LONG lParam ){ PAINTSTRUCT ps; RECT rc; HDC hdc; int x; static si=48; si++; char bfr[60]={si,0},num[6]; long l; switch(msg) { case 0x401: // network event detected. if(lParam == FD_READ) { x=0; char *bufr=new char[10000]; do { x=recv(wParam,bufr,10000,0); processData(bufr); }while(x==10000); delete bufr ...
Published 5 years, 6 months ago

Compare Sony Vaio vs Macbook White

http://digitalpbk.com/hardware/compare-sony-vaio-cw-vpccw26fg-versus-vs-apple-macbook-white Compare Sony Vaio vs Macbook White )250 GB 4 (Serial ATA, 5400 rpm) Optical DriveDVD±RW/±R DL/RAM Drive Maximum Reading Speed : DVD+R: 8x (SL), 8x (DL)/DVD-R: 8x (SL), 8x (DL)/DVD+RW: 8x/DVD-RW: 8x/DVD-ROM: 8x/DVD-RAM: 5x/CD-ROM: 24x/CD-R: 24x/CD-RW: 24x Maximum Writing Speed : DVD+R: 8x (SL), 6x (DL)/DVD-R: 8x (SL), 6x (DL)DVD+RW: 8x/DVD-RW: 6x/DVD-RAM: 5x/CD-R: 24x/CD-RW: 10x 8x slot-loading SuperDrive (DVD±R DL/DVD±RW/ CD-RW) Maximum write speed: 8x DVD-R, DVD+R; 4x DVD-R DL (double layer), DVD+R DL (double layer), DVD ...
Published 2 years, 3 months ago

Compare Dell Inspiron Laptop vs Sony Vaio

http://digitalpbk.com/sony-vaio/dell-inspiron-laptop-14r-vs-sony-vaio-vpccw26fg-laptop Compare Dell Inspiron Laptop vs Sony Vaio GB), DDR3, (SO DIMM). Hard Disk Drive (HDD) 500 GB 4 (Serial ATA, 5400 rpm) 320 GB 4 (Serial ATA, 5400 rpm) Optical Drive DVD±RW/±R DL/RAM Drive Maximum Reading Speed : DVD+R: 8x (SL), 8x (DL)/DVD-R: 8x (SL), 8x (DL)/DVD+RW: 8x/DVD-RW: 8x/DVD-ROM: 8x/DVD-RAM: 5x/CD-ROM: 24x/CD-R: 24x/CD-RW: 24x Maximum Writing Speed : DVD+R: 8x (SL), 6x (DL)/DVD-R: 8x (SL), 6x (DL)DVD+RW: 8x/DVD-RW: 6x/DVD-RAM: 5x/CD-R: 24x/CD-RW: 10x Maximum Reading Speed : DVD+R: 8x (SL), 8x (DL)/DVD-R: 8x (SL), 8x ...
Published 1 year, 5 months ago

An Introduction to PHP

http://digitalpbk.blogspot.com/2007/04/introduction-to-php-part1.html that follows it until the ;. date is a function that returns the formatted date and time according to the argument passed to it.The code segment is broken up into statements. Each statement ends with a ; as in C / C++. Variables in PHPAll variables in PHP start with $. eg: $variable = 10;Unlike C/C++ no data type needs to be mentioned in PHP. $variable = 10;$var2 = "arun";$var3 = array("asd","gfh");$var4 = false;To read more about the language, built-in functions and syntax ...
Published 5 years, 1 month ago

Orkut Perl Script - Login, Scrapper and more

http://digitalpbk.blogspot.com/2007/06/orkut-mass-scrapper-scrap-all-friends.html ($file=shift) { print "\nFile to read : "; $file = ; chomp $file; } open DLL, "$file"; @uids = ; close DLL; $cnt = join("\n",@uids); $cnt =~ s/.*?\n//g; $cnt =~ s/[\n]+/>/g; $cnt =~ s/>//; %hc = split(/>/,$cnt); $file .= ".s"; if($dest = shift) {$file=$dest;} open DLL,">$file" or die("$!"); $inx=0; foreach $key (sort keys %hc) { $val = $hc{$key}; $inx++; printf("%6d %28s %0s\n",$inx,"$key","$val"); print DLL ...
Published 4 years, 11 months ago

Perl Download Manager

http://digitalpbk.blogspot.com/2008/06/perl-download-manager.html (my $i=1;$i { print "\n+ ".$folder."$file.$i.part"; open IN, $folder."$file.$i.part"; binmode IN; my $buffer; print OUT $buffer while(read(IN,$buffer,65536)); close IN; unlink $folder."$file.$i.part"; } close OUT; print "\nDone :)\n"; open STAT,">>$folder$file.stat"; print STAT "".localtime; print STAT " : Finished Downloading $tdl / $tgl bytes \n"; close STAT;}close HND; ...
Published 3 years, 11 months ago

The MP3 ID3 Tag

http://digitalpbk.blogspot.com/2007/03/mp3-id3-tag.html in the TAG occurs. Bit6 : If SET the Frame is discarded when the file is changed. Bit5 : If SET indicates the tag is read-only and changing the contents may break some code. Bit4 : Not Used Must be 0 Bit3 : Not Used Must be 0 Bit2 : Not Used Must be 0 Bit1 : Not Used Must be 0LSBFlag2 : Frame Format FlagsMSB Bit8 : Not Used Must be 0 Bit7 : If SET indicates the presence of grouping information. Bit6 : Not Used Must be 0 Bit5 : Not Used Must be 0 Bit4 : If SET the frame is compressed using zlib deflate ...
Published 5 years, 2 months ago

Gumblar Virus Javascript removal using PERL

http://digitalpbk.com/virus/gumblar-web-virus-manual-removal-free-tool Gumblar Virus Javascript removal using PERL Gumblar virus infects all .html and .php files and injects a piece of javascript in the source code. The code is usually found just below the <body> tag. The Javascript code Gumblar injects varies widely and usually attaches a script or inline frame inside your page to execute itself on page load. Read on to get rid of this virus. Gumblar Source Code Samples when delimited by new lines Sample 1 var D; if(D!='' ...
Published 2 years, 1 month ago

Related help topics for could not read microcode More keywords like could not read microcode
More pages for could not read microcode


Email Newsletter
Email:
Popular Posts
Recent Posts
Tags
Random photo
Havelock Boat Jetty Havelock Boat Jetty in Havelock Island Andaman
On Facebook
Recent Comments


digitalpbk