Code Monkey home page Code Monkey logo

zint-gpl-only's Introduction

**************************************************************************
NOTE: This version of Zint is now archived and is not being actively
developed. For the latest version of the code see the zint/zint repository
or join us on SourceForge at https://www.sourceforge.net/projects/zint
**************************************************************************

Zint and libzint
----------------
Zint is a suite of programs to allow easy encoding of data in any of the
wide range of public domain barcode standards and to allow integration of
this capability into your own programs.

Zint is able to encode data in the following formats:

Code 11, Standard Code 2 of 5, IATA Code 2 of 5, Industrial Code 2 of 5,
Interleaved Code 2 of 5, Code 2 of 5 Data Logic, ITF-14, Deutche Post
Leitcode, Deutche Post Identcode, UPC-A, UPC-E, EAN-2, EAN-5, EAN-8,
EAN-13, UK Plessey, MSI Plessey, Telepen Alpha, Telepen Numeric, Code 39,
Extended Code 39, Code 93, PZN, Code 23, LOGMARS, Codabar, Pharmacode, Code
128, EAN-128, NVE-18, Code 16k, PDF417, MicroPDF417, Two-Track Pharmacode,
PostNet, PLANET, Australia Post 4-State Symbols, RM4SCC, USPS OneCode, GS1
DataBar, DataBar-14, DataBar Limited, DataBar Extended, DataBar Stacked,
Composite Symbology, Data Matrix, QR Code, Maxicode, Aztec Code, EAN-13,
Micro QR, Korea Post Barcode, HIBC Code 128, HIBC Code 39, HIBC Data Matrix,
HIBC PDF417, HIBC MicroPDF417, HIBC QR Code, HIBC Aztec Code, Japanese Postal
Code, Code 49, Channel Code, Code One, Grid Matrix, FIM and Flattermarken.


PROJECT STATUS
--------------
Version 2.3.0:
This release features a complete rebuild of QR Code and Micro QR Code
functionality which now:

* Automatically detects and adjusts to Japanese characters
* Supports GS1 encoding
* Does not require the qrencode library.

Also new in this release is Grid Matrix support which similarly supports
Chinese character encoding.

Version 2.3.1:
Correction of some minor bugs in Code 128 and Data Matrix, addition of
--notext option to CLI and better operation of --scale option which now
scales human readable text and MaxiCode.

SPECIAL NOTE: Codablock-F has now been REMOVED from this project because of
problems implimenting this standard. For full details see the project website.

Version 2.3.2:
More bug corrections including important corrections to RSS Expanded,
Maxicode and ISBN.

Version 2.4:
Simplified GUI. Addition of "render" functions provides an API for
glabels. Corrections to 4-state codes. Simplification in QR code. Added
--dump option and support for reading from stdin.

Version 2.4.1:
Contains bugfixes for Data Matrix and QR Code. Add option to produce multiple
files from the command line. Add option to change font size in PNG images.
Tidy up information for creating Debian packages and for compiling on MS
Visual Studio. Correct bug preventing compilation without PNG support.

Version 2.4.2:
Fix bugs in batch processing - this now works from the command line.

CONTACT ME
----------
The home of libzint is:

	<http://www.sourceforge.net/projects/zint>

and the home for Zint documentation is:

	<http://www.zint.org.uk>

For feature requests or bug reports please join the mailing list at

	<https://lists.sourceforge.net/lists/listinfo/zint-barcode>

or send an e-mail to

	<[email protected]>

BEFORE POSTING TO THIS LIST
---------------------------
Please note the following points...
* You do not need to join the list to post messages, although joining
  the list will usually mean your request is answered more promptly.
* Zint is primarily developed for Linux. If you are using another platform
  then we will be less able to help you, although we will do so if we can.
  We cannot provide support for commercial packages such as MS Office or
  Crystal Reports.
* Always ensure you are using the latest version of Zint before posting bug
  reports - the bug you are reporting may have been fixed already.
* Please remember to state what operating system you are using and include
  enough information to allow us to reproduce the error - including input
  data if appropriate.
* Please DO NOT post messages asking for us to change the license
  arrangements. You will be ignored. If you want a barcode encoder with a
  different license then please look elsewhere.
* Please remember that Zint is developed by volunteers - don't be surprised
  if we are unable to help you or if it takes a long time to answer your
  questions.

Thanks for your interest in libzint.
Happy encoding.

Robin.

zint-gpl-only's People

Contributors

bog-dan-ro avatar brianray2 avatar g3rrk avatar ismaell avatar samlown avatar woo-j avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

zint-gpl-only's Issues

issue of RSS14 limit

when the checksum equal 88, check_elements[i] = finder_pattern_ltd[i + (checksum * 14)]; ,index of finder_pattern_ltd will overflow.

Please clarify status of this repository; please tag releases.

Could you please confirm whether my impression that development of Zint has been moved here from Sourceforge is accurate? Is this an official (authoritative) Zint repository? If so it would be nice to put a corresponding note to README (and perhaps to project page at Sourceforge).

Also I'd like to ask you to tag releases which is very helpful for automatic notifications for new releases as well as it allow to conveniently download Zint sources in compressed tarball.

By the way for the sake of best practice it would be nice to ship ChangeLog in top level directory rather than as "debian/changelog" which is meant for packaging-related news only.

Thank you.

zint -d 69 produces incomplete ISBN bar code

zint -o obama.eps -b 69 -d "9781934840832"

produces bar code that doesn't have the numerals at the top that ISBN bar codes usually have -- there's one string of numbers on the left and another with 90000.

also, some ISBN bar codes have "EAN" and a triangle on the right side of the bar code.

Plessey Check : unsigned iterator never negative

You can find this code twice in plessey.c:

for(i = src_len - 1; i >= 0; i--) {
x += weight * ctoi(source[i]);

The problem is that i was declared unsigned, so this is an infinite loop (until the point of memory corruption). The easiest fix is to modify to

for(i = src_len; i; i--) {
x += weight * ctoi(source[ i - 1 ]);

aztec encoding "Debug.Print" return wrong result

My scanner read "DebugPrint" instead of "Debug.Print".
I have no idea why you set 12 or 23 or 24 inside AztecCodeSet. they cause typemap(5)=88, 88-64=24 (curtable), we don't have such table with value =24. (only have 1,2,4,8,16 and 32) it cause ignore "." inside the string.

const int AztecCodeSet[128] = { /* From Table 2 */
32, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 4, 12, 32, 32, 32, 32, 32, 32,
32, 32, 32, 32, 32, 32, 32, 4, 4, 4, 4, 4, 23, 8, 8, 8, 8, 8, 8, 8,
8, 8, 8, 8, 24, 8, 24, 8, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 8, 8,
8, 8, 8, 8, 4, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 8, 4, 8, 4, 4, 4, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 8, 4, 8, 4, 4
};

/* Problem characters (those that appear in different tables with different values) can now be resolved into their tables /
for(int i = 0; i < maplength; i++) {
if((charmap[i] >= 300) && (charmap[i] < 400)) {
curtable = typemap[i];
if(curtable > 64) {
curtable -= 64;
}
switch(charmap[i]) {
case 300: /
Carriage Return /
switch(curtable) {
case PUNC: charmap[i] = 1; break;
case MIXED: charmap[i] = 14; break;
}
break;
case 301: /
Comma /
switch(curtable) {
case PUNC: charmap[i] = 17; break;
case DIGIT: charmap[i] = 12; break;
}
break;
case 302: /
Full Stop */
switch(curtable) {
case PUNC: charmap[i] = 19; break;
case DIGIT: charmap[i] = 13; break;
}
break;
}
}
}

--reverse only works with --notext, and then produces code WITH text

Hello!

I'm using v2.4.2 on Windows10 on the command line.

Starting with
zint.exe --barcode=20 --output="c:/my/file.png" -d "Zint is great"
one gets a PNG with a Code128 barcode and a text string.

I saw the --reverse option and thought I can use it to generate a negative:
zint.exe --barcode=20 --reverse --output="c:/my/file.png" -d "Zint is great"
But this does not produce a PNG, nor any error message or return value !=0.

One could think that --reverse is not supported by Code128, but interestingly
zint.exe --barcode=20 --reverse --notext --output="c:/my/file.png" -d "Zint is great"
DOES generate an inverted PNG, but contrary to the parameter, it also contains the text string.

Further more, I tried this with QRcode, DataMatrix and Aztec. It seems none of them supports a text string in general, but the --reverse option only works together with --notext, otherwise no image is generated...

win32 version Output Height setting failed

Hi all:)
I'm using Win32 version,
and I've change Height field value to 100 ,in Appearance tab,
But when I press Save to specific a Path to save picture,
and choose output type to PNG, Then press Save button,
output picture resolution is still 46x46.

Please help to modify it:)

Best regards.
Mosquito

No human readable text visible when using --scale

Hi.

I have a problem where the text below the barcode is not visible when I have used the --scale option.

In the zint GUI there is text but when the image is saved there is no human readable text.

Batch mode broken: file numbering not corresponding to line numbers, lines skipped

Thanks for this great piece of software - just a little issue I discovered with version 2.4.2.0 on Windows:

The filenames in batch mode are generated wrongly:

  • Made a file with a number per line (1,2..10)
  • Output parameter: -o ~~~~~.png
  • 00001.png contains barcode of line 10 / content of line 1 is missing
  • 00011.png contains barcode of line 10
  • no file "00010.png" exists

Gets worse with more lines: With an input file with some thousand lines line 1000 was written to 00001.png - seems a problem of how the filename is put together.

Output of ####.png is wrong also, but different; the @ character doesn't work at all (maybe commandline issue/limitation on Windows)

Documentation states: "By default Zint will output numbered filenames starting with 00001.png
,00002.png etc. To change this behaviour use the ­o option..." but when "-o" is missing, only one file called "out.png" is (over-)written.
­­

[Bug] ISBN content check missing "+"

An ISBN can have an addon. But it isnt possible to encode it, because the sanity check in upcean.c on line 605 sorts data with an "+" out.
I think it has to be added there.

Generate extended Barcode with an TAB command

Hello, is it possible (how to do that) to generate a barcode with some text, then a TAB-command like the TAB-Key on keyboard and then other text?
What do I have to type in extended Code39 or Code128 to get e.g. following barcode:
User<-TAB->Password

zint -qt does not launch GUI version

wfz@weirwood:~/sfb/sfb-latest/trunk/scripts/lib/zint-2.4.2/frontend$ zint -qt
zint: invalid option -- 'q'

I have qt installed, but do not know how to report exactly which libraries/versions -- tell me what you need to know.

Ubuntu 12.04

Bad string allocation

In zint/backend/rss.c I encountered this problem:

char* general_field = (char*)_alloca(strlen(source));
char* general_field_type = (char*)_alloca(strlen(source));

char* reduced = (char*)_alloca(src_len);
char* binary_string = (char*)_alloca(7 * src_len);

if(strlen(binary_string) < 36) { remainder = 36 - strlen(binary_string); }

Obviously, the amount of bytes allocated for each string should be increased with one. The variable remainder should be

if(strlen(binary_string) < 36) { remainder = 35 - strlen(binary_string); }

Copy to clipboard

Hi,

can you add a "Copy to clipboard" function? (button or shortcut)

Thanks.

[Bug] maxicode copies to many chars

The loop at line 414 in maxicode.c counts up to 9 and copies 10 chars into "substring" but there are only 9 chars to copy, because only 9 digits are to be compressed.
So the loop should only count up to 8.
That isn't a bug which causes an error, because "atoi" is tolerant with non-digit-chars after the number. But it is wrong and could cause problems in future.

Zint Qt crashes upon start on Windows Embedded 7

This happens with Zint 2.4.3.0. It also happens with 2.4.2

The setup program works correctly, but the program doesn´t start. All i get is a window telling me Zint has stopped working (it never starts). The detailed info looks like this:

Problem signature:
  Problem Event Name:   APPCRASH
  Application Name: qtZint.exe
  Application Version:  2.4.3.0
  Application Timestamp:    4dd1604b
  Fault Module Name:    qtZint.exe
  Fault Module Version: 2.4.3.0
  Fault Module Timestamp:   4dd1604b
  Exception Code:   c000001d
  Exception Offset: 00293e95
  OS Version:   6.1.7601.2.1.0.320.65
  Locale ID:    9226
  Additional Information 1: 0a9e
  Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
  Additional Information 3: 0a9e
  Additional Information 4: 0a9e372d3b4ad19135b953a78882e789

Read our privacy statement online:
  http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409

If the online privacy statement is not available, please read our privacy statement offline:
  C:\Windows\system32\en-US\erofflps.txt

Here´s a detailed system info on my system. I send it in the hope this crash can be reproduced.

CPU-Z TXT Report
-------------------------------------------------------------------------

Binaries
-------------------------------------------------------------------------

CPU-Z version           1.58

Processors
-------------------------------------------------------------------------

Number of processors        1
Number of threads       1

APICs
-------------------------------------------------------------------------

Processor 0 
    -- Core 0   
        -- Thread 0 0

Processors Information
-------------------------------------------------------------------------

Processor 1         ID = 0
    Number of cores     1 (max 1)
    Number of threads   1 (max 1)
    Name            AMD Athlon MP
    Codename        Thoroughbred
    Specification       AMD Athlon(tm) XP
    Package         Socket A (462)
    CPUID           6.8.1
    Extended CPUID      7.8
    Core Stepping       B0
    Technology      0.13 um
    Core Speed      1266.3 MHz
    Multiplier x FSB    9.5 x 133.3 MHz
    Rated Bus speed     266.6 MHz
    Instructions sets   MMX (+), 3DNow! (+), SSE
    L1 Data cache       64 KBytes, 2-way set associative, 64-byte line size
    L1 Instruction cache    64 KBytes, 2-way set associative, 64-byte line size
    L2 cache        256 KBytes, 16-way set associative, 64-byte line size
    FID/VID Control     no

    K7 Thermal sensor   yes


Thread dumps
-------------------------------------------------------------------------

CPU Thread 0    
    APIC ID         0
    Topology        Processor ID 0, Core ID 0, Thread ID 0
    Type            02001003h
    Max CPUID level     00000001h
    Max CPUID ext. level    80000008h
    Cache descriptor    Level 1, I, 64 KB, 1 thread(s)
    Cache descriptor    Level 1, D, 64 KB, 1 thread(s)
    Cache descriptor    Level 2, U, 256 KB, 1 thread(s)

    CPUID        
    0x00000000      0x00000001  0x68747541  0x444D4163  0x69746E65
    0x00000001      0x00000681  0x00000000  0x00000000  0x0383FBFF
    0x80000000      0x80000008  0x68747541  0x444D4163  0x69746E65
    0x80000001      0x00000781  0x00000000  0x00000000  0xC1CBFBFF
    0x80000002      0x20444D41  0x6C687441  0x74286E6F  0x5820296D
    0x80000003      0x00000050  0x00000000  0x00000000  0x00000000
    0x80000004      0x00000000  0x00000000  0x00000000  0x00000000
    0x80000005      0x0408FF08  0xFF20FF10  0x40020140  0x40020140
    0x80000006      0x00000000  0x41004100  0x01008140  0x00000000
    0x80000007      0x00000000  0x00000000  0x00000000  0x00000001
    0x80000008      0x00002022  0x00000000  0x00000000  0x00000000

    MSR 0x0000001B      0x00000000  0xFEE00900
    MSR 0xC0010114      0x844B9248  0x37373737
    MSR 0xC0010015      0x00000000  0x0D011008



Chipset
-------------------------------------------------------------------------

Northbridge         VIA P4M266/KM266 (VT8375) rev. 00
Southbridge         VIA VT8235 rev. 00
Graphic Interface       AGP
AGP Revision            3.0
AGP Transfer Rate       4x
AGP SBA             supported, enabled
Memory Type         DDR
Memory Size         1280 MBytes
Memory Frequency        133.3 MHz (1:1)
DRAM Interleave         none
CAS# latency (CL)       2.5
RAS# to CAS# delay (tRCD)   3
RAS# Precharge (tRP)        3
Cycle Time (tRAS)       6

Memory SPD
-------------------------------------------------------------------------

DIMM #              1
    SMBus address       0x50
    Memory type     DDR
    Manufacturer (ID)   Samsung (CE00000000000000)
    Size            256 MBytes
    Max bandwidth       PC2100 (133 MHz)
    Part number     M3 68L3223DTL-CB0 
    Serial number       F1047919
    Manufacturing date  Week 25/Year 03
    Number of banks     1
    Data width      64 bits
    Correction      None
    Registered      no
    Buffered        no
    Nominal Voltage     2.50 Volts
    EPP         no
    XMP         no
JEDEC timings table     CL-tRCD-tRP-tRAS-tRC @ frequency
    JEDEC #1        2.0-2-2-5-n.a. @ 100 MHz
    JEDEC #2        2.5-3-3-6-n.a. @ 133 MHz

DIMM #              2
    SMBus address       0x51
    Memory type     DDR
    Manufacturer (ID)   Kingston (7F98000000000000)
    Size            1024 MBytes
    Max bandwidth       PC2100 (133 MHz)
    Part number     K
    Serial number       6D18F812
    Manufacturing date  Week 46/Year 09
    Number of banks     2
    Data width      64 bits
    Correction      None
    Registered      no
    Buffered        no
    Nominal Voltage     2.50 Volts
    EPP         no
    XMP         no
JEDEC timings table     CL-tRCD-tRP-tRAS-tRC @ frequency
    JEDEC #1        2.0-2-2-5-n.a. @ 100 MHz
    JEDEC #2        2.5-3-3-6-n.a. @ 133 MHz

DIMM #              1
SPD registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  80 08 07 0D 0A 01 40 00 04 75 75 00 82 08 00 01 
    10  0E 04 0C 01 02 20 00 A0 75 00 00 50 3C 50 2D 40 
    20  90 90 50 50 00 00 00 00 00 00 00 00 00 00 00 00 
    30  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 BF 
    40  CE 00 00 00 00 00 00 00 01 4D 33 20 36 38 4C 33 
    50  32 32 33 44 54 4C 2D 43 42 30 20 4C 44 03 19 F1 
    60  04 79 19 00 43 57 43 32 42 30 31 00 00 00 00 00 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  00 20 62 60 22 09 FF FF FF FF FF 27 18 04 FF FF 
    90  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    A0  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    B0  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    C0  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    D0  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    E0  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    F0  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 

DIMM #              2
SPD registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  80 08 07 0D 0B 02 40 00 04 75 75 00 82 08 00 01 
    10  0E 04 0C 01 02 20 00 A0 75 00 00 50 3C 50 2D 80 
    20  90 90 50 50 00 00 00 00 00 43 4B 30 32 75 00 00 
    30  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 66 
    40  7F 98 00 00 00 00 00 00 04 4B 00 00 00 00 00 00 
    50  00 00 00 00 00 00 00 00 00 00 00 00 00 09 2E 6D 
    60  18 F8 12 00 00 00 00 00 00 00 00 00 00 00 00 00 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  39 39 30 35 31 39 33 2D 31 35 36 2E 41 30 30 4C 


Monitoring
-------------------------------------------------------------------------

Mainboard Model     K7VM2 (0x00000157 - 0x0002DDA0)

LPCIO
-------------------------------------------------------------------------

LPCIO Vendor        Winbond
LPCIO Model     W83697HF
LPCIO Vendor ID     0x5CA3
LPCIO Chip ID       0x60
LPCIO Revision ID   0x12
Config Mode I/O address 0x2E
Config Mode LDN     0xB
Config Mode registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  FF FF FF FF FF FF FF 0B FF FF FF FF FF FF FF FF 
    10  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    20  60 12 FF FE 1A 00 00 FF 00 00 FF FF FF 30 00 FF 
    30  01 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    40  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    50  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    60  02 95 FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    70  00 FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
Register space      LPC, base address = 0x0290


Hardware Monitors
-------------------------------------------------------------------------

Hardware monitor    Winbond W83697HF
    Voltage 0   1.63 Volts [0x66] (CPU VCore)
    Voltage 1   3.20 Volts [0xC8] (AUX)
    Voltage 2   2.74 Volts [0xAB] (+3.3V)
    Voltage 3   5.19 Volts [0xC1] (+5V)
    Voltage 4   11.73 Volts [0xC1] (+12V)
    Temperature 0   56°C (132°F) [0x38] (TMPIN0)
    Temperature 1   45°C (112°F) [0x5A] (TMPIN1)
    Fan 0       4530 RPM [0x95] (FANIN0)
Hardware registers  
Register space      LPC, base address = 0x0290
bank 0  
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  01 FF 01 FF 00 00 00 00 01 01 01 01 3C 3C 0A 0A 
    10  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    20  66 05 C8 AB C2 C2 C2 38 95 FF FF 48 88 48 08 5A 
    30  02 A0 90 71 A4 30 20 48 06 22 0A 02 D1 41 00 00 
    40  01 DF 0F 00 00 00 00 5F 2D 02 01 44 18 15 00 A3 
    50  FF FF 00 FF FF FF 00 80 60 70 FF FF 11 00 FF 05 
    60  66 05 C8 AB C2 C2 C2 38 95 FF FF 48 88 48 08 5A 
    70  02 A0 90 71 A4 30 20 48 06 22 0A 02 D1 41 00 00 
    80  01 FF 01 FF 00 00 00 00 01 01 01 01 3C 3C 0A 0A 
    90  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
    A0  66 05 C8 AB C2 C2 C2 38 95 FF FF 48 88 48 08 5A 
    B0  02 A0 90 71 A4 30 20 48 06 22 0A 02 D1 41 00 00 
    C0  01 00 00 00 00 00 00 5F 2D 02 01 44 18 15 00 A3 
    D0  FF FF 00 FF FF FF 00 80 60 70 FF FF 11 00 FF 05 
    E0  66 05 C8 AB C2 C2 C2 38 95 FF FF 48 88 48 08 5A 
    F0  02 A0 90 71 A4 30 20 48 06 22 0A 02 D1 41 00 00 
bank 1  
    50  2D 00 00 4B 00 50 00 FF FF FF FF FF FF FF FF FF 
bank 2  
    50  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
bank 3  
    50  FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF 
bank 4  
    50  03 00 00 00 00 00 00 00 17 DF 0F 03 11 00 FF FF 


PCI Devices
-------------------------------------------------------------------------

Description         Host Bridge
Location            bus 0 (0x00), device 0 (0x00), function 0 (0x00)
Common header
    Vendor ID       0x1106
    Model ID        0x3116
    Revision ID     0x00
    PI          0x00
    SubClass        0x00
    BaseClass       0x06
    Cache Line      0x00
    Latency         0x08
    Header          0x00
PCI header
    Address 0 (memory)  0xE0000000
    Subvendor ID        0x1849
    Subsystem ID        0x3156
    Int. Line       0x00
    Int. Pin        0x00
PCI capability
    Caps class      AGP
    Caps offset     0xA0
    Caps version        2.0
    Caps status     enabled
    Transfer rate       4x (max 4x)
    Queue lenght        173 (max 32)
PCI capability
    Caps class      Power Management
    Caps offset     0xC0
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 16 31 06 00 30 22 00 00 00 06 00 08 00 00 
    10  08 00 00 E0 00 00 00 00 00 00 00 00 00 00 00 00 
    20  00 00 00 00 00 00 00 00 00 00 00 00 49 18 56 31 
    30  00 00 00 00 A0 00 00 00 00 00 00 00 00 00 00 00 
    40  00 18 88 80 82 44 01 00 18 99 88 10 82 44 00 00 
    50  A0 00 00 02 C0 05 50 50 EE 01 10 10 30 50 50 50 
    60  0A AA 00 20 E4 99 42 26 D8 0D 43 50 44 05 00 00 
    70  82 C8 00 01 41 01 10 00 01 00 00 00 00 00 00 02 
    80  0F 65 00 00 80 00 00 00 03 00 FD 4F 00 00 00 00 
    90  17 A3 E9 EA 80 1C 71 69 00 33 00 00 21 11 74 00 
    A0  02 C0 20 00 07 02 00 1F 04 03 00 00 6F 08 04 00 
    B0  78 AC 18 9B 40 00 00 00 8A 00 00 00 00 00 20 80 
    C0  01 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 42 1B 00 00 01 00 00 00 00 00 00 00 00 00 
    F0  04 00 00 00 00 00 01 13 00 00 00 00 00 00 00 00 

Description         PCI to PCI Bridge
Location            bus 0 (0x00), device 1 (0x01), function 0 (0x00)
Common header
    Vendor ID       0x1106
    Model ID        0xB091
    Revision ID     0x00
    PI          0x00
    SubClass        0x04
    BaseClass       0x06
    Cache Line      0x00
    Latency         0x00
    Header          0x01
PCI header
    Primary bus     0x00
    Secondary bus       0x01
    Int. Line       0x00
    Int. Pin        0x00
PCI capability
    Caps class      Power Management
    Caps offset     0x80
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 91 B0 07 01 30 22 00 00 04 06 00 00 01 00 
    10  00 00 00 00 00 00 00 00 00 01 01 00 F0 00 00 00 
    20  E0 DD E0 DF D0 CD C0 DD 00 00 00 00 00 00 00 00 
    30  00 00 00 00 80 00 00 00 00 00 00 00 00 00 0C 00 
    40  81 C0 88 44 24 72 00 00 00 00 00 00 00 00 00 00 
    50  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    60  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  01 00 02 02 00 00 00 00 00 00 00 00 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 

Description         Ethernet Controller
Location            bus 0 (0x00), device 10 (0x0A), function 0 (0x00)
Common header
    Vendor ID       0x1106
    Model ID        0x3106
    Revision ID     0x86
    PI          0x00
    SubClass        0x00
    BaseClass       0x02
    Cache Line      0x08
    Latency         0x20
    Header          0x00
PCI header
    Address 0 (port)    0x0000EC00
    Address 1 (memory)  0xDFFFFF00
    Subvendor ID        0x1186
    Subsystem ID        0x1405
    Int. Line       0x12
    Int. Pin        0x01
PCI capability
    Caps class      Power Management
    Caps offset     0x40
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 06 31 17 00 10 02 86 00 00 02 08 20 00 00 
    10  01 EC 00 00 00 FF FF DF 00 00 00 00 00 00 00 00 
    20  00 00 00 00 00 00 00 00 00 00 00 00 86 11 05 14 
    30  00 00 00 00 40 00 00 00 00 00 00 00 12 01 03 08 
    40  01 00 02 FE 00 01 00 00 00 00 00 00 00 00 00 00 
    50  00 00 80 04 00 00 00 00 00 00 00 00 00 00 00 00 
    60  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 

Description         USB Controller (UHCI)
Location            bus 0 (0x00), device 16 (0x10), function 0 (0x00)
Common header
    Vendor ID       0x1106
    Model ID        0x3038
    Revision ID     0x80
    PI          0x00
    SubClass        0x03
    BaseClass       0x0C
    Cache Line      0x08
    Latency         0x20
    Header          0x80
PCI header
    Address 4 (port)    0x0000E000
    Subvendor ID        0x1106
    Subsystem ID        0x3038
    Int. Line       0x15
    Int. Pin        0x01
PCI capability
    Caps class      Power Management
    Caps offset     0x80
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 38 30 15 00 10 02 80 00 03 0C 08 20 80 00 
    10  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    20  01 E0 00 00 00 00 00 00 00 00 00 00 06 11 38 30 
    30  00 00 00 00 80 00 00 00 00 00 00 00 15 01 00 00 
    40  40 12 03 00 00 00 00 00 00 0B 00 00 00 00 00 00 
    50  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    60  10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  01 00 C2 FF 00 00 00 00 00 00 00 00 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  00 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 

Description         USB Controller (UHCI)
Location            bus 0 (0x00), device 16 (0x10), function 1 (0x01)
Common header
    Vendor ID       0x1106
    Model ID        0x3038
    Revision ID     0x80
    PI          0x00
    SubClass        0x03
    BaseClass       0x0C
    Cache Line      0x08
    Latency         0x20
    Header          0x80
PCI header
    Address 4 (port)    0x0000E400
    Subvendor ID        0x1106
    Subsystem ID        0x3038
    Int. Line       0x15
    Int. Pin        0x02
PCI capability
    Caps class      Power Management
    Caps offset     0x80
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 38 30 15 00 10 02 80 00 03 0C 08 20 80 00 
    10  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    20  01 E4 00 00 00 00 00 00 00 00 00 00 06 11 38 30 
    30  00 00 00 00 80 00 00 00 00 00 00 00 15 02 00 00 
    40  40 12 03 00 00 00 00 00 00 0B 00 00 00 00 00 00 
    50  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    60  10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  01 00 C2 FF 00 00 00 00 00 00 00 00 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  00 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 

Description         USB Controller (UHCI)
Location            bus 0 (0x00), device 16 (0x10), function 2 (0x02)
Common header
    Vendor ID       0x1106
    Model ID        0x3038
    Revision ID     0x80
    PI          0x00
    SubClass        0x03
    BaseClass       0x0C
    Cache Line      0x08
    Latency         0x20
    Header          0x80
PCI header
    Address 4 (port)    0x0000E800
    Subvendor ID        0x1106
    Subsystem ID        0x3038
    Int. Line       0x15
    Int. Pin        0x03
PCI capability
    Caps class      Power Management
    Caps offset     0x80
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 38 30 15 00 10 02 80 00 03 0C 08 20 80 00 
    10  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    20  01 E8 00 00 00 00 00 00 00 00 00 00 06 11 38 30 
    30  00 00 00 00 80 00 00 00 00 00 00 00 15 03 00 00 
    40  40 12 03 00 00 00 00 00 00 0B 00 00 00 00 00 00 
    50  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    60  10 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  01 00 C2 FF 00 00 00 00 00 00 00 00 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  00 20 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 

Description         USB 2.0 Controller (EHCI)
Location            bus 0 (0x00), device 16 (0x10), function 3 (0x03)
Common header
    Vendor ID       0x1106
    Model ID        0x3104
    Revision ID     0x82
    PI          0x20
    SubClass        0x03
    BaseClass       0x0C
    Cache Line      0x08
    Latency         0x20
    Header          0x00
PCI header
    Address 0 (memory)  0xDFFFFE00
    Subvendor ID        0x1106
    Subsystem ID        0x3104
    Int. Line       0x15
    Int. Pin        0x04
PCI capability
    Caps class      Power Management
    Caps offset     0x80
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 04 31 16 00 10 02 82 20 03 0C 08 20 00 00 
    10  00 FE FF DF 00 00 00 00 00 00 00 00 00 00 00 00 
    20  00 00 00 00 00 00 00 00 00 00 00 00 06 11 04 31 
    30  00 00 00 00 80 00 00 00 00 00 00 00 15 04 00 00 
    40  00 00 03 00 00 00 00 00 80 10 00 09 00 00 00 00 
    50  00 5A 04 80 00 00 00 00 04 0B 88 88 53 88 00 00 
    60  20 20 01 00 00 00 00 00 01 00 00 00 00 00 00 C0 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  01 00 C2 FF 00 00 00 00 00 00 00 00 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 00 03 00 00 00 00 00 00 00 00 

Description         PCI to ISA Bridge
Location            bus 0 (0x00), device 17 (0x11), function 0 (0x00)
Common header
    Vendor ID       0x1106
    Model ID        0x3177
    Revision ID     0x00
    PI          0x00
    SubClass        0x01
    BaseClass       0x06
    Cache Line      0x00
    Latency         0x00
    Header          0x80
PCI header
    Subvendor ID        0x1849
    Subsystem ID        0x3177
    Int. Line       0x00
    Int. Pin        0x00
PCI capability
    Caps class      Power Management
    Caps offset     0xC0
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 77 31 87 00 10 02 00 00 01 06 00 00 80 00 
    10  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    20  00 00 00 00 00 00 00 00 00 00 00 00 49 18 77 31 
    30  00 00 00 00 C0 00 00 00 00 00 00 00 00 00 00 00 
    40  44 00 F8 00 00 00 00 00 0C 20 00 00 44 00 08 08 
    50  81 1D 09 00 00 00 00 00 43 00 FF 01 00 00 04 08 
    60  00 00 00 00 10 00 02 04 00 00 00 00 00 00 00 00 
    70  49 18 77 31 00 00 00 00 00 00 00 00 20 00 00 00 
    80  20 84 59 00 9A 00 00 00 01 08 00 00 04 18 00 00 
    90  00 01 07 00 B0 C5 00 00 10 18 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  01 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  01 04 01 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 04 01 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 05 00 00 00 00 00 00 00 00 00 

Description         IDE Controller
Location            bus 0 (0x00), device 17 (0x11), function 1 (0x01)
Common header
    Vendor ID       0x1106
    Model ID        0x0571
    Revision ID     0x06
    PI          0x8A
    SubClass        0x01
    BaseClass       0x01
    Cache Line      0x00
    Latency         0x20
    Header          0x00
PCI header
    Address 4 (port)    0x0000FC00
    Subvendor ID        0x1849
    Subsystem ID        0x0571
    Int. Line       0xFF
    Int. Pin        0x01
PCI capability
    Caps class      Power Management
    Caps offset     0xC0
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 71 05 05 00 90 02 06 8A 01 01 00 20 00 00 
    10  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    20  01 FC 00 00 00 00 00 00 00 00 00 00 49 18 71 05 
    30  00 00 00 00 C0 00 00 00 00 00 00 00 FF 01 00 00 
    40  0B F2 09 05 18 1C C0 00 A8 20 A8 20 FF 00 B6 B6 
    50  07 E6 17 F0 0C 00 00 00 A8 A8 A8 A8 00 00 00 00 
    60  00 02 00 00 00 00 00 00 00 02 00 00 00 00 00 00 
    70  02 01 00 00 00 00 00 00 02 01 00 00 00 00 00 00 
    80  00 B0 0E 4F 00 00 00 00 00 00 0F 4F 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  01 00 02 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  06 00 71 05 49 18 71 05 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 07 00 00 00 00 00 00 00 00 00 

Description         Audio device
Location            bus 0 (0x00), device 17 (0x11), function 5 (0x05)
Common header
    Vendor ID       0x1106
    Model ID        0x3059
    Revision ID     0x50
    PI          0x00
    SubClass        0x01
    BaseClass       0x04
    Cache Line      0x00
    Latency         0x00
    Header          0x00
PCI header
    Address 0 (port)    0x0000DC00
    Subvendor ID        0x1106
    Subsystem ID        0x4161
    Int. Line       0x16
    Int. Pin        0x03
PCI capability
    Caps class      Power Management
    Caps offset     0xC0
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 59 30 01 00 10 02 50 00 01 04 00 00 00 00 
    10  01 DC 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    20  00 00 00 00 00 00 00 00 00 00 00 00 06 11 61 41 
    30  00 00 00 00 C0 00 00 00 00 00 00 00 16 03 00 00 
    40  01 CC 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    50  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    60  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  01 00 02 06 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  01 00 02 06 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 

Description         Ethernet Controller
Location            bus 0 (0x00), device 18 (0x12), function 0 (0x00)
Common header
    Vendor ID       0x1106
    Model ID        0x3065
    Revision ID     0x74
    PI          0x00
    SubClass        0x00
    BaseClass       0x02
    Cache Line      0x08
    Latency         0x20
    Header          0x00
PCI header
    Address 0 (port)    0x0000D800
    Address 1 (memory)  0xDFFFFD00
    Subvendor ID        0x1849
    Subsystem ID        0x3065
    Int. Line       0x17
    Int. Pin        0x01
PCI capability
    Caps class      Power Management
    Caps offset     0x40
    Caps version        1.1
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  06 11 65 30 17 00 10 02 74 00 00 02 08 20 00 00 
    10  01 D8 00 00 00 FD FF DF 00 00 00 00 00 00 00 00 
    20  00 00 00 00 00 00 00 00 00 00 00 00 49 18 65 30 
    30  00 00 00 00 40 00 00 00 00 00 00 00 17 01 03 08 
    40  01 00 02 FE 00 01 00 00 00 00 00 00 00 00 00 00 
    50  00 00 80 04 00 00 00 00 00 00 00 00 00 00 00 02 
    60  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 

Description         VGA Controller
Location            bus 1 (0x01), device 0 (0x00), function 0 (0x00)
Common header
    Vendor ID       0x10DE
    Model ID        0x0322
    Revision ID     0xA1
    PI          0x00
    SubClass        0x00
    BaseClass       0x03
    Cache Line      0x00
    Latency         0xF8
    Header          0x00
PCI header
    Address 0 (memory)  0xDE000000
    Address 1 (memory)  0xD0000000
    Subvendor ID        0x1462
    Subsystem ID        0x9110
    Int. Line       0x10
    Int. Pin        0x01
PCI capability
    Caps class      Power Management
    Caps offset     0x60
    Caps version        1.1
PCI capability
    Caps class      AGP
    Caps offset     0x44
    Caps version        3.0
    Caps status     enabled
    Transfer rate       4x (max 4x)
    Queue lenght        1 (max 32)
PCI registers   
        00 01 02 03 04 05 06 07 08 09 0A 0B 0C 0D 0E 0F 
    00  DE 10 22 03 07 00 B0 02 A1 00 00 03 00 F8 00 00 
    10  00 00 00 DE 08 00 00 D0 00 00 00 00 00 00 00 00 
    20  00 00 00 00 00 00 00 00 00 00 00 00 62 14 10 91 
    30  00 00 00 00 60 00 00 00 00 00 00 00 10 01 05 01 
    40  62 14 10 91 02 00 30 00 17 02 00 1F 04 03 00 1F 
    50  01 00 00 00 01 00 00 00 CE D6 23 00 0F 00 00 00 
    60  01 44 02 00 00 00 00 00 00 00 00 00 00 00 00 00 
    70  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    80  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    90  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    A0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    B0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    C0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    D0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    E0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 
    F0  00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 


DMI
-------------------------------------------------------------------------

DMI BIOS        
    vendor          American Megatrends Inc.
    version         P1.90
    date            08/28/2003

DMI System Information      
    manufacturer        unknown
    product         K7VM2
    version         2.00
    serial          00000000
    UUID            {00000000-0000-0000-0000-000000000000}

DMI Baseboard       
    vendor          unknown
    model           K7VM2
    revision        2.00
    serial          00000000

DMI System Enclosure        
    manufacturer        unknown
    chassis type        Desktop
    chassis serial      00000000

DMI Processor       
    manufacturer        AMD
    model           AMD Athlon(tm) XP
    clock speed     1267.0 MHz
    FSB speed       133.0 MHz
    multiplier      9.5x

DMI Memory Controller       
    correction      32-bit ECC
    Max module size     1024 MBytes

DMI Memory Module       
    designation     DIMM1
    size            256 MBytes (single bank)

DMI Memory Module       
    designation     DIMM2
    size            1024 MBytes (double bank)

DMI Memory Module       
    designation     DIMM3

DMI Memory Module       
    designation     DIMM4

DMI Extension Slot      
    designation     PCI1
    type            PCI
    width           32 bits
    populated       no

DMI Extension Slot      
    designation     PCI2
    type            PCI
    width           32 bits
    populated       yes

DMI Extension Slot      
    designation     PCI3
    type            PCI
    width           32 bits
    populated       no

DMI Extension Slot      
    designation     PCI4
    type            PCI
    width           32 bits

DMI Extension Slot      
    designation     PCI5
    type            PCI
    width           32 bits

DMI Port Connector      
    designation     PS2 KEYBOARD (internal)
    designation     PS2 Keyboard (external)
    port type       Keyboard Port
    connector       PS/2

DMI Port Connector      
    designation     PS2 MOUSE (internal)
    designation     PS2 Mouse (external)
    port type       Mouse Port
    connector       PS/2

DMI Port Connector      
    designation     VGA (internal)
    designation     VGA Port (external)
    port type       Video Port
    connector       DB-15 female

DMI Port Connector      
    designation     LPT (internal)
    designation     LPT Port (external)
    port type       Parallel Port ECP/EPP
    connector       DB-25 female

DMI Port Connector      
    designation     USB (internal)
    designation     Rear USB 0 (external)
    port type       USB
    connector       Access Bus (USB)

DMI Port Connector      
    designation     USB (internal)
    designation     Rear USB 1 (external)
    port type       USB
    connector       Access Bus (USB)

DMI Port Connector      
    designation     USB (internal)
    designation     Front USB 2 (external)
    port type       USB
    connector       Access Bus (USB)

DMI Port Connector      
    designation     USB (internal)
    designation     Front USB 3 (external)
    port type       USB
    connector       Access Bus (USB)

DMI Port Connector      
    designation     ETHERNET (internal)
    designation     ETHERNET (external)
    port type       Network Port
    connector       RJ-45

DMI Port Connector      
    designation     LINE-OUT (internal)
    designation     LINE-OUT (external)
    port type       Audio Port
    connector       Mini Jack (headphones)

DMI Port Connector      
    designation     LINE-IN (internal)
    designation     LINE-IN (external)
    port type       Audio Port
    connector       Mini Jack (headphones)

DMI Port Connector      
    designation     MICROPHONE (internal)
    designation     MICROPHONE (external)
    port type       Audio Port
    connector       Mini Jack (headphones)

DMI Port Connector      
    designation     GAME (internal)
    designation     Game Port (external)
    port type       MIDI Port
    connector       DB-15 female


Graphics
-------------------------------------------------------------------------

Number of adapters      1

Graphic APIs
-------------------------------------------------------------------------

API             NVIDIA I/O
API             NVIDIA NVAPI

Display Adapters
-------------------------------------------------------------------------

Display adapter 0   
    Name            NVIDIA GeForce FX 5200 
    Revision        B1
    Codename        NV34
    Technology      0.15 um
    Memory size     128 MB
    PCI device      bus 1 (0x1), device 0 (0x0), function 0 (0x0)
    Vendor ID       0x10DE (0x1462)
    Model ID        0x0322 (0x9110)
    Performance Level   0


Software
-------------------------------------------------------------------------

Windows Version         Microsoft Windows 7 (6.1)  Service Pack 1 (Build 7601) 
DirectX Version         11.0

ACPI
-------------------------------------------------------------------------

ACPI Tree       
_GPE
  _L08
  _L0E
  _L02
  _L0D
  _L03
  _L05
  _L04
_PR_
  CPU1
_SB_
  PWRB
    _HID
    _STA
  PCI0
    _HID
    _ADR
    _BBN
    USXD
    CRS_
    GART
    [ ]
    [ ]
    TLBC
    TTBR
    [ ]
    [ ]
    GATR
    BSR0
    [ ]
    SPLV
    W2FG
    [ ]
    RTCX
    TMEM
    [ ]
    MEMT
    TOM_
    MDET
    TFCS
    FLAG
    OSFL
    _INI
    _REG
    _CRS
    _PRT
    PIC0
    PIC1
    SPIO
    WIN1
    [ ]
    INDX
    DATA
    [ ]
    [ ]
    CFG_
    [ ]
    LDN_
    [ ]
    ACTR
    [ ]
    IOAH
    IOAL
    IOEH
    IOEL
    [ ]
    INTR
    [ ]
    INT1
    [ ]
    DMCH
    [ ]
    GP40
    [ ]
    OPT1
    OPT2
    OPT3
    OPT4
    OPT5
    ENFG
    EXFG
    LDFD
    LDLP
    LDU1
    LDU2
    LDIR
    LDGM
    LDMD
    LDPM
    FDC0
      _HID
      _STA
      _DIS
      _CRS
      _PRS
      _SRS
    UAR1
      _HID
      _UID
      _STA
      _DIS
      _CRS
      _SRS
      _PRS
      _PR0
      _PRW
    UAR2
      _HID
      _UID
      _STA
      _DIS
      _CRS
      _SRS
      _PRS
    IRDA
      _HID
      _STA
      _DIS
      _CRS
      _SRS
      _PRS
    LPT_
      _HID
      _STA
      _DIS
      _CRS
      _SRS
      _PRS
    ECP_
      _HID
      _STA
      _DIS
      _CRS
      _SRS
      _PRS
    GAME
      _HID
      _STA
      _DIS
      _CRS
      _PRS
      _SRS
    MIDI
      _HID
      _STA
      _DIS
      _CRS
      _PRS
      _SRS
    FDST
    U1ST
    U2ST
    IRST
    LPST
    IODT
    GSTA
    DDIS
    DENB
    PCRS
    PSRS
    ECRS
    ESRS
    CNBF
    UABS
    CSCP
    URP1
      _STA
      _ON_
      _OFF
    URP2
      _STA
      _ON_
      _OFF
    FDDP
      _STA
      _ON_
      _OFF
    LPTP
      _STA
      _ON_
      _OFF
    FCRS
    PBUF
    EBUF
    FPRS
    C1PR
    C2PR
    LPPR
    EPRS
    USB1
      _ADR
      U1D3
      [ ]
      UR49
      UBP1
      [ ]
      PMCS
      U1PE
      GOD0
      USXD
      _PRW
    USB2
      _ADR
      UBP2
      [ ]
      PMCS
      U2PE
      GOD0
      USXD
      _PRW
    USB3
      _ADR
      UBP3
      [ ]
      PMCS
      U3PE
      GOD0
      USXD
      _PRW
    EHCI
      _ADR
      UBP3
      [ ]
      PMCS
      U3PE
      GOD0
      _PRW
    SBRG
      _ADR
      SBID
      [ ]
      D147
      PIX0
      PIX1
      PIX2
      PIX3
      PIX4
      SB94
      [ ]
      LEDB
      PMIO
      [ ]
      LEDP
      SB84
      [ ]
      [ ]
      KIRQ
      [ ]
      MIRQ
      SB51
      [ ]
      [ ]
      KCFG
      KBCP
      [ ]
      KIDX
      KDAT
      [ ]
      [ ]
      KBWK
      MSWK
      SYSR
        _HID
        _STA
        IORG
        _CRS
      PIC_
        _HID
        _STA
        _CRS
      DMAD
        _HID
        _CRS
      TMR_
        _HID
        _CRS
      RTC_
        _HID
        _CRS
      SPKR
        _HID
        _CRS
      COPR
        _HID
        _CRS
      PSRG
      [ ]
      PK2E
      PM2E
      [ ]
      PS2M
        _HID
        _STA
        M2R0
        M2R1
        _CRS
        _PRW
        _PSW
      PS2K
        _HID
        _CID
        _STA
        _CRS
        _PRW
        _PSW
      KBFG
      MSFG
      PWCR
      [ ]
      [ ]
      SUST
      [ ]
    IDE0
      _ADR
      REGF
      _REG
      TIM0
      TMD0
      PIO0
      DMA0
      PIO1
      DMA1
      CHNF
      CFG2
      [ ]
      [ ]
      SSPT
      SMPT
      PSPT
      PMPT
      [ ]
      SSUT
      [ ]
      SSCR
      SSUE
      SMUT
      [ ]
      SMCR
      SMUE
      PSUT
      [ ]
      PSCR
      PSUE
      PMUT
      [ ]
      PMCR
      PMUE
      GMPT
      GMUE
      GMUT
      GMCR
      GSPT
      GSUE
      GSUT
      GSCR
      CHN0
        _ADR
        _GTM
        _STM
        DRV0
          _ADR
          _GTF
        DRV1
          _ADR
          _GTF
      CHN1
        _ADR
        _GTM
        _STM
        DRV0
          _ADR
          _GTF
        DRV1
          _ADR
          _GTF
      GTM_
      STM_
      AT01
      AT02
      AT03
      AT04
      ATA0
      ATA1
      ATA2
      ATA3
      ATAB
      CMDC
      GTFB
      GTF_
      RATA
    AC9_
      _ADR
      _PRW
    MC9_
      _ADR
      ACLK
      [ ]
      [ ]
      MC9P
      _PRW
    ILAN
      _ADR
      _STA
      _PRW
    _PRW
  PRSA
  PRSB
  PRSC
  PRSD
  [ ]
  [ ]
  PIRA
  PIRB
  PIRC
  [ ]
  PIRD
  [ ]
  [ ]
  [ ]
  EP3C
  EN3C
  [ ]
  KBFG
  [ ]
  FLDA
  LPDA
  IRD1
  IRD2
  FLIR
  LPIR
  U1IR
  [ ]
  IRIR
  [ ]
  [ ]
  ENIR
  IRSD
  [ ]
  IRBA
  [ ]
  PS0E
  PS1E
  ROME
  APCE
  LPMS
  MSEN
  IXEN
  LPMD
  MDEN
  GMEN
  LPLP
  LPEN
  FDEN
  LPCA
  CAEN
  LPCB
  CBEN
  LPSB
  SBEN
  FDSE
  [ ]
  IRQA
  IRQB
  IRQC
  IRQD
  ICRS
  LNKA
    _HID
    _UID
    _STA
    _PRS
    _DIS
    _CRS
    _SRS
  LNKB
    _HID
    _UID
    _STA
    _PRS
    _DIS
    _CRS
    _SRS
  LNKC
    _HID
    _UID
    _STA
    _PRS
    _DIS
    _CRS
    _SRS
  LNKD
    _HID
    _UID
    _STA
    _PRS
    _DIS
    _CRS
    _SRS
  MEM_
    _HID
    _STA
    MEM1
    _CRS
  SLPS
  SLPB
    _HID
    SBEV
    _PRW
_SI_
_TZ_
_REV
_OS_
_OSI
_GL_
APIC
_PIC
_S0_
_S1_
SS3_
_S4_
_S5_
PTBF
PTB0
PTB1
PTB2
MCTH
FNOR
SIOR
[ ]
SIND
SDTA
_PTS
_WAK
PMS0
[ ]
[ ]
RTCS
[ ]
PWBT
[ ]
IOTP
[ ]
[ ]
WAKS
[ ]
SE1S
[ ]
PS1S
[ ]
SE1E
[ ]
PS1E
GPIO
[ ]
[ ]
GP11
[ ]
TEMP
[ ]
DBG8
DEB0
[ ]
DBG9

speccy

Summary
        Operating System
            MS Windows 7 32-bit SP1
        CPU
            AMD Athlon MP
            Thoroughbred 0.13um Technology
        RAM
            1,25 GB DDR @ 133MHz (2.5-3-3-6)
        Motherboard
            K7VM2 (Socket-A)    56 °C
        Graphics
            VA903 SERIES (1280x1024@70Hz)
            128MB GeForce FX 5200 (MSI)
        Hard Drives
            40GB Maxtor Maxtor 2F040J0 ATA Device (PATA)    39 °C
        Optical Drives
            HL-DT-ST DVD-ROM GDR8161B ATA Device
        Audio
            VIA AC'97 Enhanced Audio Controller (WDM)
Operating System
    MS Windows 7 32-bit SP1
    Installation Date: 28 August 2011, 17:25
        Windows Security Center
            Firewall    Disabled
        Windows Update
            AutoUpdate  Download Automatically and Notify Prior to Install
        Windows Defender
            Windows Defender    Enabled
        Environment Variables
            USERPROFILE C:\Users\Juan David
            SystemRoot  C:\Windows
                User Variables
                    HOME    C:\Users\Juan David
                    MOZ_PLUGIN_PATH c:\Program Files\SumatraPDF\
                    TEMP    C:\Users\Juan David\AppData\Local\Temp
                    TMP C:\Users\Juan David\AppData\Local\Temp
                Machine Variables
                    ComSpec C:\Windows\system32\cmd.exe
                    FP_NO_HOST_CHECK    NO
                    NUMBER_OF_PROCESSORS    1
                    OS  Windows_NT
                    Path
                    C:\Program Files\PC Connectivity Solution\
                    C:\Windows\system32
                    C:\Windows
                    C:\Windows\System32\Wbem
                    %SYSTEMROOT%\System32\WindowsPowerShell\v1.0\
                    c:\Program Files\QT Lite\QTSystem
                    PATHEXT .COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.MSC
                    PROCESSOR_ARCHITECTURE  x86
                    PROCESSOR_IDENTIFIER    x86 Family 6 Model 8 Stepping 1, AuthenticAMD
                    PROCESSOR_LEVEL 6
                    PROCESSOR_REVISION  0801
                    PSModulePath    C:\Windows\system32\WindowsPowerShell\v1.0\Modules\
                    TEMP    C:\Windows\TEMP
                    TMP C:\Windows\TEMP
                    USERNAME    SYSTEM
                    windir  C:\Windows
        TimeZone
            TimeZone    GMT -5 Hours
            Language    Spanish
            Country Colombia
            Currency    $
            Date Format dd/MM/yyyy
            Time Format hh:mm:ss tt
        Power Profile
            Active power scheme Home/Office Desk
            Hibernation Enabled
        Scheduler
            09/11/2011 10:37 p.m.;Every 1 hour(s) from 10:37 a.m. for 24 hour(s) every day, starting 21/10/2011 GoogleUpdateTaskUserS-1-5-21-1322726250-3542713262-3251273973-1000UA
            09/11/2011 11:24 p.m.;Every 1 hour(s) from 10:24 a.m. for 24 hour(s) every day, starting 20/10/2011 GoogleUpdateTaskMachineUA
            10/11/2011 01:18 a.m.;Every 3 hour(s) from 04:18 p.m. for 24 hour(s) every day, starting 31/10/2011 FacebookUpdateTaskUserS-1-5-21-1322726250-3542713262-3251273973-1000UA
            10/11/2011 10:24 a.m.;Run at user logon GoogleUpdateTaskMachineCore
            10/11/2011 10:37 a.m.;At 10:37 a.m. every day, starting 21/10/2011  GoogleUpdateTaskUserS-1-5-21-1322726250-3542713262-3251273973-1000Core
            10/11/2011 04:18 p.m.;At 04:18 p.m. every day, starting 31/10/2011  FacebookUpdateTaskUserS-1-5-21-1322726250-3542713262-3251273973-1000Core
        Process List
                afom.exe
                    Process ID  4684
                    User    Juan David
                    Domain  familia-arias
                    Path    D:\AAA Documentos\Juan David\PERFILES\firefoxbeta_w7\extensions{E173B749-DB5B-4fd2-BA0E-94ECEA0CA55B}\components\afom.exe
                    Memory Usage    996 KB
                    Peak Memory Usage   4.18 MB
                audiodg.exe
                    Process ID  5220
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\AUDIODG.EXE
                    Memory Usage    13 MB
                    Peak Memory Usage   14 MB
                avfwsvc.exe
                    Process ID  1448
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    c:\Program Files\Avira\AntiVir Desktop\avfwsvc.exe
                    Memory Usage    7.18 MB
                    Peak Memory Usage   112 MB
                avgnt.exe
                    Process ID  5704
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\Avira\AntiVir Desktop\avgnt.exe
                    Memory Usage    4.99 MB
                    Peak Memory Usage   31 MB
                avguard.exe
                    Process ID  1488
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    c:\Program Files\Avira\AntiVir Desktop\avguard.exe
                    Memory Usage    20 MB
                    Peak Memory Usage   150 MB
                avmailc.exe
                    Process ID  2164
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    c:\Program Files\Avira\AntiVir Desktop\avmailc.exe
                    Memory Usage    980 KB
                    Peak Memory Usage   8.91 MB
                avshadow.exe
                    Process ID  1900
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    c:\Program Files\Avira\AntiVir Desktop\avshadow.exe
                    Memory Usage    2.93 MB
                    Peak Memory Usage   2.95 MB
                avwebgrd.exe
                    Process ID  2216
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    c:\Program Files\Avira\AntiVir Desktop\AVWEBGRD.EXE
                    Memory Usage    7.70 MB
                    Peak Memory Usage   13 MB
                cisvc.exe
                    Process ID  1532
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\CISVC.EXE
                    Memory Usage    176 KB
                    Peak Memory Usage   2.67 MB
                conhost.exe
                    Process ID  1240
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\conhost.exe
                    Memory Usage    2.01 MB
                    Peak Memory Usage   2.02 MB
                conhost.exe
                    Process ID  3472
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Windows\system32\conhost.exe
                    Memory Usage    4.29 MB
                    Peak Memory Usage   4.29 MB
                csrss.exe
                    Process ID  3588
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\csrss.exe
                    Memory Usage    1.52 MB
                    Peak Memory Usage   1.53 MB
                csrss.exe
                    Process ID  332
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\csrss.exe
                    Memory Usage    3.75 MB
                    Peak Memory Usage   35 MB
                csrss.exe
                    Process ID  380
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\csrss.exe
                    Memory Usage    9.38 MB
                    Peak Memory Usage   40 MB
                csrss.exe
                    Process ID  3512
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\csrss.exe
                    Memory Usage    13 MB
                    Peak Memory Usage   20 MB
                evernoteclipper.exe
                    Process ID  4300
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\Evernote\Evernote\EvernoteClipper.exe
                    Memory Usage    5.25 MB
                    Peak Memory Usage   5.25 MB
                explorer.exe
                    Process ID  3376
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Windows\Explorer.EXE
                    Memory Usage    33 MB
                    Peak Memory Usage   36 MB
                far.exe
                    Process ID  4736
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\Far2\Far.exe
                    Memory Usage    9.48 MB
                    Peak Memory Usage   9.48 MB
                firefox.exe
                    Process ID  4392
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\Mozilla Firefox\firefox.exe
                    Memory Usage    43 MB
                    Peak Memory Usage   101 MB
                holder.dnd
                    Process ID  4844
                    User    Juan David
                    Domain  familia-arias
                    Path    D:\Otros programas\farplugins\drgndrop\holder.dnd
                    Memory Usage    2.39 MB
                    Peak Memory Usage   2.39 MB
                jusched.exe
                    Process ID  1220
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\Common Files\Java\Java Update\jusched.exe
                    Memory Usage    3.30 MB
                    Peak Memory Usage   3.30 MB
                khalmnpr.exe
                    Process ID  4220
                    User    Juan David
                    Domain  familia-arias
                    Path    c:\Program Files\Common Files\LogiShrd\KHAL3\KHALMNPR.EXE
                    Memory Usage    8.61 MB
                    Peak Memory Usage   8.63 MB
                lsass.exe
                    Process ID  512
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\lsass.exe
                    Memory Usage    8.35 MB
                    Peak Memory Usage   8.87 MB
                lsm.exe
                    Process ID  520
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\lsm.exe
                    Memory Usage    3.00 MB
                    Peak Memory Usage   3.03 MB
                nfsclnt.exe
                    Process ID  1988
                    User    Servicio de red
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\nfsclnt.exe
                    Memory Usage    3.88 MB
                    Peak Memory Usage   3.90 MB
                nokiamserver.exe
                    Process ID  5712
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\Common Files\Nokia\MPlatform\NokiaMServer.exe
                    Memory Usage    16 MB
                    Peak Memory Usage   16 MB
                psxss.exe
                    Process ID  388
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\psxss.exe
                    Memory Usage    4.10 MB
                    Peak Memory Usage   4.12 MB
                rundll32.exe
                    Process ID  4480
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Windows\System32\rundll32.exe
                    Memory Usage    3.75 MB
                    Peak Memory Usage   3.76 MB
                sched.exe
                    Process ID  1244
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    c:\Program Files\Avira\AntiVir Desktop\sched.exe
                    Memory Usage    1.24 MB
                    Peak Memory Usage   5.76 MB
                searchindexer.exe
                    Process ID  3796
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\SearchIndexer.exe
                    Memory Usage    17 MB
                    Peak Memory Usage   17 MB
                services.exe
                    Process ID  504
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\services.exe
                    Memory Usage    6.61 MB
                    Peak Memory Usage   9.36 MB
                setpoint.exe
                    Process ID  5320
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\Logitech\SetPointP\SetPoint.exe
                    Memory Usage    13 MB
                    Peak Memory Usage   13 MB
                skype.exe
                    Process ID  6116
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\Skype\Phone\Skype.exe
                    Memory Usage    102 MB
                    Peak Memory Usage   108 MB
                smss.exe
                    Process ID  204
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    \SystemRoot\System32\smss.exe
                    Memory Usage    812 KB
                    Peak Memory Usage   828 KB
                snmp.exe
                    Process ID  1808
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\System32\snmp.exe
                    Memory Usage    5.82 MB
                    Peak Memory Usage   5.84 MB
                speccy.exe
                    Process ID  3096
                    User    Juan David
                    Domain  familia-arias
                    Path    D:\Otros programas\speccy113\Speccy.exe
                    Memory Usage    19 MB
                    Peak Memory Usage   19 MB
                spoolsv.exe
                    Process ID  1420
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\System32\spoolsv.exe
                    Memory Usage    8.82 MB
                    Peak Memory Usage   8.87 MB
                svchost.exe
                    Process ID  612
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\svchost.exe
                    Memory Usage    7.32 MB
                    Peak Memory Usage   8.42 MB
                svchost.exe
                    Process ID  700
                    User    Servicio de red
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\svchost.exe
                    Memory Usage    5.82 MB
                    Peak Memory Usage   5.83 MB
                svchost.exe
                    Process ID  792
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\System32\svchost.exe
                    Memory Usage    16 MB
                    Peak Memory Usage   16 MB
                svchost.exe
                    Process ID  828
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\svchost.exe
                    Memory Usage    26 MB
                    Peak Memory Usage   43 MB
                svchost.exe
                    Process ID  944
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\svchost.exe
                    Memory Usage    11 MB
                    Peak Memory Usage   11 MB
                svchost.exe
                    Process ID  1048
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\svchost.exe
                    Memory Usage    11 MB
                    Peak Memory Usage   12 MB
                svchost.exe
                    Process ID  1264
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\svchost.exe
                    Memory Usage    9.13 MB
                    Peak Memory Usage   34 MB
                svchost.exe
                    Process ID  1360
                    User    Servicio de red
                    Domain  NT AUTHORITY
                    Path    C:\Windows\System32\svchost.exe
                    Memory Usage    17 MB
                    Peak Memory Usage   21 MB
                svchost.exe
                    Process ID  1560
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\svchost.exe
                    Memory Usage    12 MB
                    Peak Memory Usage   12 MB
                svchost.exe
                    Process ID  1612
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\System32\svchost.exe
                    Memory Usage    3.39 MB
                    Peak Memory Usage   3.41 MB
                svchost.exe
                    Process ID  1872
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\svchost.exe
                    Memory Usage    5.36 MB
                    Peak Memory Usage   5.38 MB
                svchost.exe
                    Process ID  1588
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\System32\svchost.exe
                    Memory Usage    3.04 MB
                    Peak Memory Usage   3.06 MB
                svchost.exe
                    Process ID  2452
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\svchost.exe
                    Memory Usage    3.56 MB
                    Peak Memory Usage   3.59 MB
                svchost.exe
                    Process ID  2500
                    User    Servicio de red
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\svchost.exe
                    Memory Usage    4.16 MB
                    Peak Memory Usage   4.20 MB
                svchost.exe
                    Process ID  3704
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\System32\svchost.exe
                    Memory Usage    11 MB
                    Peak Memory Usage   11 MB
                system
                    Process ID  4
                system idle process
                    Process ID  0
                taskeng.exe
                    Process ID  5684
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\taskeng.exe
                    Memory Usage    3.40 MB
                    Peak Memory Usage   3.55 MB
                taskhost.exe
                    Process ID  4984
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Windows\system32\taskhost.exe
                    Memory Usage    5.68 MB
                    Peak Memory Usage   5.77 MB
                tcpsvcs.exe
                    Process ID  1788
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\System32\tcpsvcs.exe
                    Memory Usage    3.25 MB
                    Peak Memory Usage   3.26 MB
                telmex.exe
                    Process ID  5516
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\Telmex\Telmex.exe
                    Memory Usage    31 MB
                    Peak Memory Usage   31 MB
                umvpfsrv.exe
                    Process ID  1140
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    c:\Program Files\Common Files\logishrd\LVMVFM\UMVPFSrv.exe
                    Memory Usage    3.02 MB
                    Peak Memory Usage   3.04 MB
                virtuawin.exe
                    Process ID  4364
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\VirtuaWin\VirtuaWin.exe
                    Memory Usage    5.69 MB
                    Peak Memory Usage   5.69 MB
                wininit.exe
                    Process ID  444
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\wininit.exe
                    Memory Usage    3.26 MB
                    Peak Memory Usage   3.34 MB
                winlist.exe
                    Process ID  5056
                    User    Juan David
                    Domain  familia-arias
                    Path    C:\Program Files\VirtuaWin\modules\WinList.exe
                    Memory Usage    2.48 MB
                    Peak Memory Usage   2.48 MB
                winlogon.exe
                    Process ID  4008
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\winlogon.exe
                    Memory Usage    5.77 MB
                    Peak Memory Usage   6.60 MB
                wmiprvse.exe
                    Process ID  2148
                    User    Servicio de red
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\wbem\wmiprvse.exe
                    Memory Usage    9.53 MB
                    Peak Memory Usage   9.61 MB
                wmiprvse.exe
                    Process ID  4580
                    User    SYSTEM
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\wbem\wmiprvse.exe
                    Memory Usage    19 MB
                    Peak Memory Usage   22 MB
                wmiprvse.exe
                    Process ID  4304
                    User    SERVICIO LOCAL
                    Domain  NT AUTHORITY
                    Path    C:\Windows\system32\wbem\wmiprvse.exe
                    Memory Usage    6.40 MB
                    Peak Memory Usage   6.52 MB
                wmpnetwk.exe
                    Process ID  2784
                    User    Servicio de red
                    Domain  NT AUTHORITY
                    Path    c:\Program Files\Windows Media Player\wmpnetwk.exe
                    Memory Usage    9.47 MB
                    Peak Memory Usage   21 MB
        Hotfixes
            09/11/2011  Security Update for Windows Embedded Standard 7 (KB2570947)
            09/11/2011  Security Update for Windows Embedded Standard 7 (KB2588516)
            09/11/2011  Security Update for Windows Embedded Standard 7 (KB2620704)
            09/11/2011  Security Update for Windows Embedded Standard 7 (KB2617657)
            20/10/2011  Actualización para Windows (KB958488)
            13/10/2011  Security Update for Windows Embedded Standard 7 (KB2567053)
            13/10/2011  Security Update for Windows Embedded Standard 7 (KB2564958)
            13/10/2011  Cumulative Security Update for Internet Explorer 8 for Windows Embedded Standard 7 (KB2586448)
            05/10/2011  Cumulative Security Update for Internet Explorer 8 for Windows Embedded Standard 7 (KB2559049)
            29/08/2011  Update for Windows Embedded Standard 7 (KB2570791)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2532531)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2510531)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2532531)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2555917)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2509553)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2425227)
            28/08/2011  Cumulative Security Update for Internet Explorer 8 for Windows Embedded Standard 7 (KB2559049)
            28/08/2011  Update for Windows Embedded Standard 7 (KB2552343)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2567680)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2560656)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2563894)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2556532)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2511455)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2507938)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2544893)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2479943)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2536275)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2503665)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2476490)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2507618)
            28/08/2011  Update for Windows Embedded Standard 7 (KB2570791)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2506212)
            28/08/2011  Security Update for Windows Embedded Standard 7 (KB2536276)
        Device Tree
                ACPI x86-based PC
                        Microsoft ACPI-Compliant System
                            AMD Athlon(tm) XP
                            ACPI Power Button
                            ACPI Sleep Button
                            ACPI Fixed Feature Button
                                PCI bus
                                    VIA Standard CPU to PCI Bridge
                                    D-Link DFE-520TX PCI Fast Ethernet Adapter
                                    VIA AC'97 Enhanced Audio Controller (WDM)
                                    VIA Rhine II Compatible Fast Ethernet Adapter
                                    Standard floppy disk controller
                                    Communications Port (COM1)
                                    Unsupported Standard Game Port
                                        VIA CPU to AGP Controller
                                                NVIDIA GeForce FX 5200 
                                                    Generic PnP Monitor
                                        VIA Rev 5 or later USB Universal Host Controller
                                                USB Root Hub
                                                        Logitech Cordless USB Mouse
                                                            Logitech Driver Interface
                                                                Logitech HID-compliant Cordless Mouse
                                                                    Logitech Driver Interface
                                                                    Logitech Driver Interface
                                        VIA Rev 5 or later USB Universal Host Controller
                                                USB Root Hub
                                                        Generic Bluetooth Radio
                                                            Bluetooth Device (RFCOMM Protocol TDI)
                                                            Microsoft Bluetooth Enumerator
                                                            Bluetooth Device (Personal Area Network)
                                        VIA Rev 5 or later USB Universal Host Controller
                                            USB Root Hub
                                        VIA USB Enhanced Host Controller
                                                USB Root Hub
                                                    HP Scanjet 4070
                                                        Logitech USB Camera (Webcam C210)
                                                            Logitech Webcam C210
                                                            Webcam C210
                                        VIA Standard PCI to ISA bridge
                                            Motherboard resources
                                            Programmable interrupt controller
                                            Direct memory access controller
                                            System timer
                                            System CMOS/real time clock
                                            System speaker
                                            Numeric data processor
                                            Standard PS/2 Keyboard
                                        VIA Bus Master IDE Controller - 0571
                                                ATA Channel 0
                                                    Maxtor 2F040J0 ATA Device
                                                ATA Channel 1
                                                    HL-DT-ST DVD-ROM GDR8161B ATA Device
                                        ECP Printer Port (LPT1)
                                            Printer Port Logical Interface
        Services
            Running Application Experience
            Running Application Information
            Running Avira FireWall
            Running Avira Mail Protection
            Running Avira Realtime Protection
            Running Avira Scheduler
            Running Avira Web Protection
            Running Background Intelligent Transfer Service
            Running Base Filtering Engine
            Running Bluetooth Support Service
            Running Client for NFS
            Running CNG Key Isolation
            Running COM+ Event System
            Running Computer Browser
            Running Cryptographic Services
            Running DCOM Server Process Launcher
            Running DHCP Client
            Running Diagnostic Policy Service
            Running Distributed Link Tracking Client
            Running DNS Client
            Running Function Discovery Provider Host
            Running Function Discovery Resource Publication
            Running Group Policy Client
            Running HomeGroup Listener
            Running HomeGroup Provider
            Running IKE and AuthIP IPsec Keying Modules
            Running Indexing Service
            Running IP Helper
            Running IPsec Policy Agent
            Running Keyboard Filter
            Running LPD Service
            Running Network Connections
            Running Network List Service
            Running Network Location Awareness
            Running Network Store Interface Service
            Running Peer Name Resolution Protocol
            Running Peer Networking Grouping
            Running Peer Networking Identity Manager
            Running Plug and Play
            Running Power
            Running Print Spooler
            Running Program Compatibility Assistant Service
            Running Remote Procedure Call (RPC)
            Running RIP Listener
            Running RPC Endpoint Mapper
            Running Security Accounts Manager
            Running Security Center
            Running Server
            Running Shell Hardware Detection
            Running Simple TCP/IP Services
            Running SNMP Service
            Running SSDP Discovery
            Running System Event Notification Service
            Running Task Scheduler
            Running TCP/IP NetBIOS Helper
            Running Themes
            Running UMVPFSrv
            Running UPnP Device Host
            Running User Profile Service
            Running Windows Audio
            Running Windows Audio Endpoint Builder
            Running Windows Connect Now - Config Registrar
            Running Windows Driver Foundation - User-mode Driver Framework
            Running Windows Event Log
            Running Windows Firewall
            Running Windows Font Cache Service
            Running Windows Image Acquisition (WIA)
            Running Windows Management Instrumentation
            Running Windows Media Player Network Sharing Service
            Running Windows Search
            Running Windows Update
            Running WinHTTP Web Proxy Auto-Discovery Service
            Running Workstation
            Stopped ActiveX Installer (AxInstSV)
            Stopped Administrador de sesión del Administrador de ventanas de escritorio
            Stopped Application Identity
            Stopped Application Layer Gateway Service
            Stopped Application Management
            Stopped BitLocker Drive Encryption Service
            Stopped Block Level Backup Engine Service
            Stopped BranchCache
            Stopped Certificate Propagation
            Stopped COM+ System Application
            Stopped Copias de seguridad de Windows
            Stopped Credential Manager
            Stopped Diagnostic Service Host
            Stopped Diagnostic System Host
            Stopped Disk Defragmenter
            Stopped Distributed Transaction Coordinator
            Stopped Encrypting File System (EFS)
            Stopped Extensible Authentication Protocol
            Stopped FLEXnet Licensing Service
            Stopped Google Update Servicio (gupdatem)
            Stopped Health Key and Certificate Management
            Stopped Human Interface Device Access
            Stopped Interactive Services Detection
            Stopped Internet Connection Sharing (ICS)
            Stopped KtmRm for Distributed Transaction Coordinator
            Stopped Link-Layer Topology Discovery Mapper
            Stopped Logitech Bluetooth Service
            Stopped Microsoft .NET Framework NGEN v2.0.50727_X86
            Stopped Microsoft iSCSI Initiator Service
            Stopped Microsoft Software Shadow Copy Provider
            Stopped Multimedia Class Scheduler
            Stopped Netlogon
            Stopped Network Access Protection Agent
            Stopped nProtect GameGuard Service
            Stopped Performance Logs & Alerts
            Stopped PnP-X IP Bus Enumerator
            Stopped PNRP Machine Name Publication Service
            Stopped Portable Device Enumerator Service
            Stopped Problem Reports and Solutions Control Panel Support
            Stopped Protected Storage
            Stopped Quality Windows Audio Video Experience
            Stopped Remote Access Auto Connection Manager
            Stopped Remote Access Connection Manager
            Stopped Remote Desktop Configuration
            Stopped Remote Desktop Services
            Stopped Remote Desktop Services UserMode Port Redirector
            Stopped Remote Procedure Call (RPC) Locator
            Stopped Remote Registry
            Stopped Routing and Remote Access
            Stopped Secondary Logon
            Stopped Secure Socket Tunneling Protocol Service
            Stopped ServiceLayer
            Stopped Servicio de actualización de Google (gupdate)
            Stopped Smart Card
            Stopped Smart Card Removal Policy
            Stopped SNMP Trap
            Stopped Software Protection
            Stopped SPP Notification Service
            Stopped Superfetch
            Stopped Telephony
            Stopped Thread Ordering Server
            Stopped TPM Base Services
            Stopped Virtual Disk
            Stopped Volume Shadow Copy
            Stopped Windows Biometric Service
            Stopped Windows Color System
            Stopped Windows Error Reporting Service
            Stopped Windows Event Collector
            Stopped Windows Installer
            Stopped Windows Modules Installer
            Stopped Windows Remote Management (WS-Management)
            Stopped Windows Time
            Stopped Wired AutoConfig
            Stopped WLAN AutoConfig
            Stopped WMI Performance Adapter
            Stopped WWAN AutoConfig
CPU
        AMD Athlon MP
            Cores   1
            Threads 1
            Name    AMD Athlon MP
            Code Name   Thoroughbred
            Package Socket A (462)
            Technology  0.13um
            Specification   AMD Athlon(tm) XP
            Family  6
            Extended Family 7
            Model   8
            Extended Model  8
            Stepping    1
            Revision    B0
            Instructions    MMX (+), 3DNow! (+), SSE
            Virtualization  Unsupported
            Hyperthreading  Not supported
            Fan Speed   4500 RPM
            Bus Speed   133.3 MHz
            Rated Bus Speed 266.6 MHz
            Stock Bus Speed 133 MHz
                Caches
                    L1 Data Cache Size  64 KBytes
                    L1 Instructions Cache Size  64 KBytes
                    L2 Unified Cache Size   256 KBytes
                Core 0
                    Core Speed  1266.4 MHz
                    Multiplier  x 9.5
                    Bus Speed   133.3 MHz
                    Rated Bus Speed 266.6 MHz
                        Thread 1
                            APIC ID 0
RAM
        Memory
            Type    DDR
            Size    1280 MBytes
            DRAM Frequency  133.3 MHz
            CAS# Latency (CL)   2.5 clocks
            RAS# to CAS# Delay (tRCD)   3 clocks
            RAS# Precharge (tRP)    3 clocks
            Cycle Time (tRAS)   6 clocks
        Physical Memory
            Memory Usage    62 %
            Total Physical  1.25 GB
            Available Physical  478 MB
            Total Virtual   3.75 GB
            Available Virtual   2.73 GB
        SPD
            Number Of SPD Modules   2
                Slot #1
                    Type    DDR
                    Size    256 MBytes
                    Manufacturer    Samsung
                    Max Bandwidth   PC2100 (133 MHz)
                    Part Number M3 68L3223DTL-CB0 
                    Serial Number   F1047919
                    Week/year   25 / 03
                    SPD Ext.    EPP
                        JEDEC #2
                            Frequency   133.3 MHz
                            CAS# Latency    2.5
                            RAS# To CAS#    3
                            RAS# Precharge  3
                            tRAS    6
                            Voltage 2.500 V
                        JEDEC #1
                            Frequency   100.0 MHz
                            CAS# Latency    2.0
                            RAS# To CAS#    2
                            RAS# Precharge  2
                            tRAS    5
                            Voltage 2.500 V
                Slot #2
                    Type    DDR
                    Size    1024 MBytes
                    Manufacturer    Kingston
                    Max Bandwidth   PC2100 (133 MHz)
                    Part Number K
                    Serial Number   6D18F812
                    Week/year   46 / 09
                    SPD Ext.    EPP
                        JEDEC #2
                            Frequency   133.3 MHz
                            CAS# Latency    2.5
                            RAS# To CAS#    3
                            RAS# Precharge  3
                            tRAS    6
                            Voltage 2.500 V
                        JEDEC #1
                            Frequency   100.0 MHz
                            CAS# Latency    2.0
                            RAS# To CAS#    2
                            RAS# Precharge  2
                            tRAS    5
                            Voltage 2.500 V
Motherboard
    Model   K7VM2 (Socket-A)
    Version 2.00
    Chipset Vendor  VIA
    Chipset Model   P4M266/KM266 (VT8375)
    Chipset Revision    00
    Southbridge Vendor  VIA
    Southbridge Model   VT8235
    Southbridge Revision    00
    System Temperature  56 °C
        BIOS
            Brand   American Megatrends Inc.
            Version P1.90
            Date    08/28/2003
        Voltage
            CPU VCore   1.648 V
            AUX 3.200 V

Zint failed to install PNG

wfz@weirwood:~/sfb/sfb-latest/trunk/scripts/lib/zint-2.4.2/build$ cmake ..
-- The C compiler identification is GNU
-- The CXX compiler identification is GNU
-- Check for working C compiler: /usr/bin/gcc
-- Check for working C compiler: /usr/bin/gcc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Performing Test CXX_COMPILER_FLAG_WALL
-- Performing Test CXX_COMPILER_FLAG_WALL - Success
-- Found ZLIB: /usr/lib/i386-linux-gnu/libz.so (found version "1.2.3.4")
-- Could NOT find PNG (missing: PNG_LIBRARY PNG_PNG_INCLUDE_DIR)
-- Looking for Q_WS_X11
-- Looking for Q_WS_X11 - found
-- Looking for Q_WS_WIN
-- Looking for Q_WS_WIN - not found.
-- Looking for Q_WS_QWS
-- Looking for Q_WS_QWS - not found.
-- Looking for Q_WS_MAC
-- Looking for Q_WS_MAC - not found.
-- Found Qt4: /usr/bin/qmake (found version "4.8.1")
-- Configuring done
-- Generating done
-- Build files have been written to: /home/wfz/sfb/sfb-latest/trunk/scripts/lib/zint-2.4.2/build

test.sh issues a whole bunch of errors when trying to write PNG files.

I have a fresh install of Ubuntu 12.04.

I hope this can be resolved without having to rebuild!

Latest Zint from Github.

php lib

hi,

we created an php extension for zint lib. it can be used to generate a barcode to a file. it understands the most options of libzint and some error reporting. if you want, i can give you the code and you can integrate it into the project.

greetings

dominik

Cleaner code

Please ensure those defines are set when building the Qt front end to ensure no implicit convertion occurs in your code, leading to possible issues.

DEFINES *=
QT_NO_CAST_FROM_BYTEARRAY \
QT_NO_CAST_FROM_ASCII \
QT_NO_CAST_TO_ASCII \
QT_NO_URL_CAST_FROM_STRING \
QT_STRICT_ITERATORS

codabar has issues with numbers

trying to make a barcode with codabar with just numbers gives an error of invalid characters in data
using any android app scanning an existing barcode I'm hoping to reprint said it's codabar text and it's all numbers
I'm on Windows for the error, haven't tested Linux

Zint does not compile with libPNG under Windows

I use the latest mingw64 with gcc 4.7.2 with cmake 2.8.10 under Windows 8 and successfully built zlib 1.2.7 and libpng 1.5.13. I added both folders to the PATH. But zint claimed not being able to find png.h. Qt4 is not installed on my system.

Not SSE1-only compatible

Win32 version crashes on Windows7 32bit immediately. Probably due to SSE2 instructions. Tested on AMD AthlonXP CPU.

backend /gridmtx.c:247: bad if test ?

backend/gridmtx.c:247:27: warning: logical 'and' of mutually exclusive tests is always
false [-Wlogical-op]

if((gbdata[sp] == 0x13) && (gbdata[sp] == 0x10)) {

Fix FindZint.cmake dest dir

Hi!
While building zint with custom prefix it tries to install to /usr because of using CMAKE_ROOT.

This patch fixes both cases:

index 0e57cb2..da1f568 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -87,7 +87,13 @@ CONFIGURE_FILE(
 ADD_CUSTOM_TARGET(uninstall
   "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake")

-install(FILES cmake/modules/FindZint.cmake DESTINATION ${CMAKE_ROOT}/Modules COMPONENT Devel)
+if (DATA_INSTALL_DIR)
+    set(CMAKE_MODULES_INSTALL_PATH ${DATA_INSTALL_DIR}/cmake/modules)
+else (DATA_INSTALL_DIR)
+    set(CMAKE_MODULES_INSTALL_PATH ${CMAKE_ROOT}/Modules)
+endif(DATA_INSTALL_DIR)
+
+install(FILES cmake/modules/FindZint.cmake DESTINATION ${CMAKE_MODULES_INSTALL_PATH} COMPONENT Devel)

 # This needs to be run very last so other parts of the scripts can take
 # advantage of this.

PDF Error

I think the PDF section 6.6.2 QR Code (ISO 18004) should say secure= not security=, see below for what it currently says.
Also known as Quick Response Code this symbology was developed by Denso.
Four levels of error correction are available using the security= option or setting
option_1 as shown in the following table.

.so library, test examples and development environment details

Hi There,

I'm planning to use zint library for one of my application. I understand it's built in Linux but I'm new to Linux. I would like to get .so library and some examples to use the library api's. I can explore myself for some time if you can give me points like the platform I need to run it, development environment I would require, etc..,

Thanks
Ajay.

a possible bug in aztec.c

I am not a c++ guy, But on my conversion from C++ to javascript, an error occurs in aztec_text_process due to out of boundary blockmap[0][i + 1].

My aztec testing message is "1" & chr(44) & chr(32) & "x" .
The blocks=4.

/* look for adjacent blocks which can use the same table (right to left search) */
for(int i = blocks - 1; i > 0; i--) {
if(blockmap[0][i] & blockmap[0][i + 1]) {
blockmap[0][i] = (blockmap[0][i] & blockmap[0][i + 1]);
}
}

info: aztec encoding "Code 2D!"

in specification ISO/IEC CD 24778.3, on Page 46 (Annex G:Aztec Code symbol encoding example), the string ”Code 2D!" encoding result is " 00100 11100 10000 00101 00110 11110 0001 0100 1111 00101 0000 00110" which is 56 digits due to Digit Latch at Space Position. however, Zint's result is "00100 11100 10000 00101 00110 00001 11110 0100 1111 00101 0000 00110" which has 57 digits. Even though the scanner got the same result,but Zing encoding is not the shortest length. Can you improve aztec_text_process? Thanks.

Request: Default symbology

Hello,

would it be possible to add an option to set the default symbology upon opening Zint Barcode Studio?

For someone like me, who uses the program for QR codes only, it would make things a lot easier and faster.

Example: You open Zint Barcode Studio and "QR Code" is automatically selected.

Thank you for reading.

[Bug]AVs in upcean.c

The loop at line 621 gets the index from "local_source" but checks "source" for the "+".
Also it counts to high - the condition should be changed to "<" (same at line 199).
I think, this has to be changed to:

for(reader = 0; reader < ustrlen(local_source); reader++)
{
if(local_source[reader] == '+') { with_addon = TRUE; }
}

Code128 issue

When I test string 'c' + '\n' + "aDEF" , Code128 Class returns:
|START B|c|Shift|Chr(10)|SHIFT|a|D|E|F|CheckDigit|STOP|
There're two SHIFT,the last SHIFT is redundant. Scanner returns wrong result.

The program I tested is OkapiBarcode which is inherited from zint. I think zint also has the same hole.

ZBarcode_Clear doesn't properly clear text

When calling ZBarcode_Clear, only the first character in the text is reset to '\0'. However, when reusing a Code128 symbology, the text is later overwritten character by character. As a consequence, when calling ZBarcode_Clear and then calling ZBarcode_Encode to encode a shorter code, the last characters of the previous code reappear in the text.
Solution:
in backend/library.c replace the line

symbol->text[0] = '\0';

with the lines

for(i = 0; i < 128; ++i) {
    symbol->text[i] = '\0';
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.