Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Slashdot Log In

Log In

Create Account  |  Retrieve Password

China to Make $125 PCs

Posted by samzenpus on Wed Sep 13, 2006 11:15 PM
from the the-peoples-computers dept.
TechFreep writes "A Chinese computer company hopes to sell low-cost PCs to schools and government agencies, but allegations of ripped-off processor designs might slow the effort. From the article: 'Chinese-based ZhongKe Menglan Electronics Technology Co. will produce several thousand low-cost PCs to distribute to schools and local governments. The PCs, which will initially sell for $150 to $175, will run on Linux and include 256Mb of RAM, a 40 or 60GB hard drive, and a Godson-2 CPU clocked between 800Mhz and 1Ghz. If initial sales of the product are successful ZhongKe will begin mass production of the units for sale at around 125 US dollars. However, the Godson-2 CPU included in the PCs has come under scrutiny of late. BLX IC Design Corp., producer of the Godson-2, produced its first working prototype in 2005. The chip clocked at 500Mhz, and BLX at the time claimed the Godson's performance rivaled that of higher-clocked Pentium III CPUs. However, the chip's architecture has gotten attention around the industry for its similarities to the MIPS chip from MIPS Technologies Inc. According to market research group In-Stat, the Godson-2 is about 95 percent compatible with the MIPS R10000, which was introduced in 1995.'"
+ -
story
This discussion has been archived. No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More
Loading... please wait.
  • MIPS patents? (Score:5, Interesting)

    by tepples (727027) <<moc.thgienip> <ta> <6002hsals>> on Wednesday September 13 2006, @11:18PM (#16101555) Homepage Journal

    Plasma [opencores.org] implements the MIPS architecture minuses the patented parts. Could the Godson CPU be a variant of this?

    • Re:MIPS patents? (Score:5, Informative)

      by pchan- (118053) on Wednesday September 13 2006, @11:37PM (#16101635) Journal
      The MIPS architecture is a popular one with people who implement their own cores. In fact, it is rather common for computer science/engineering students to implement their own using FPGAs, based on the commonly used Computer Architecture [amazon.com] by Hennessy and Patterson. The architecture is extremely simple, straightforward, and easy to implement.

      I believe you can implemented a near complete MIPS R3000 core with only minor differences and avoid any patent issues (as long as you don't call it a MIPS). Some of the ops on the newer cores are still encumbered and cannot be implemented without paying money to MIPS Technologies [mips.com]. I've worked with a couple of MIPS clones, some by American companies, and there is nothing illegal about them. In fact, it would be far more surprising if the Chinese companies wasted the time creating their own architecture instead of basing it on a proven one.
      • Re:MIPS patents? (Score:4, Interesting)

        by Jason Earl (1894) on Wednesday September 13 2006, @11:57PM (#16101688) Homepage

        One thing is certain. Microsoft can't pretend that these Linux computers are going to end up running Windows.

        • Re:MIPS patents? (Score:4, Informative)

          by poopie (35416) on Thursday September 14 2006, @12:12AM (#16101723) Journal
          One thing is certain. Microsoft can't pretend that these Linux computers are going to end up running Windows


          There *IS* Windows NT 3.51 for MIPS...

          http://en.wikipedia.org/wiki/Windows_NT [wikipedia.org]

          We had NEC MIPS servers running it way back when.
          • Re: (Score:3, Interesting)

            by Jason Earl (1894)

            Yes, I remember Windows NT for MIPS. That hardly means that you can buy such a beast today. Even if you could buy NT for MIPs what are the chances of it running on something that is 95% compatible?

            Besides, what sort of freakshow would rather run Windows NT 3.51 on MIPs over Linux? The most sophisticated piece of software that is likely to run on such a system is notepad.exe.

            • Re: (Score:3, Funny)

              Besides, what sort of freakshow would rather run Windows NT 3.51 on MIPs over Linux? The most sophisticated piece of software that is likely to run on such a system is notepad.exe.

              There is always someone who will do it and when asked why will reply:

              "bacause I can!"

        • See, when you're paid to cry wolf, you cry wolf. Lots. Invent gazillions of imaginary wolves all over the place.

          The BSA is paid to cry wolf. That's what it does for a living. It's there just to paint a bleak image where poor starving software developpers like MS or Oracle or Autodesk are losing trillions to piracy. It's there to take every single 3D Studio Max copy that some chinese kid downloaded to model a ship or skin for free mod for a $30 game, and present it as $6000 stolen from the poor starving soft
      • Re:MIPS patents? (Score:5, Informative)

        by PAPPP (546666) on Thursday September 14 2006, @12:33AM (#16101788) Homepage
        It's worth noting that the patent most likely to be stepped on in dealing with MIPS is US patent 4,814,976, which covers the unaligned load/store instructions lwl, lwr, swl and swr. This patent expires 2006-12-26, which won't be long now. Google for "Lexra" "MIPS" and "Patent" for details of the various spats over the patent.
        Apparently some of the more recent extensions fall under other patents, but the basic archetecture will be entirely unencumbered after this one expires. And as a Computer Enginering student I can tell you as ISAs go it's far and away the easiest useful one to impliment.
        • Re:MIPS patents? (Score:4, Insightful)

          by qbwiz (87077) * <john@baumanfaDEBIANmily.com minus distro> on Thursday September 14 2006, @12:03AM (#16101704) Homepage
          It's not too terrible to program an x86 in assembly (all those extra instructions can sometimes come in handy, in a way), but I'd really rather not implement an x86. The instruction decoder alone would take ages to work out.
        • Re:MIPS patents? (Score:5, Informative)

          by pchan- (118053) on Thursday September 14 2006, @12:39AM (#16101799) Journal
          But you may be one of the fortunates who go to school where Hennessy is president, so you may have learned MIPS there =P

          I take it you mean Stanford. I went to UCLA, but many people I've met from different schools in the US have used the same architecture book. I'm talking about computer architecture, not just assembly language. The complexity of the x86 processors is far too great to teach them to undergrads. However, in about a hundred hours of work, one lab partner and I were able to construct a working MIPS-architecture CPU (on a Xilinx FPGA) starting with nothing but gates, flipflops, and other basic elements.

          Now, since you know x86 assembly, let me teach you MIPS assembly in one minute:
          32 registers, r0-r31. r0 is hardcoded to zero. jal/bal (jump/branch and link) push the PC to r31. otherwise, all registers are equal.

          li rD VAL ; load to register rD (destination) immediate value VAL
          lw rD rS ; load word at address stored in rS (source) to
          add/sub/... rD rA rB ; perform op on registers A and B, store to register D
          sw rD rS ; store word at rD to address in rS

          You'll be doing a lot of load/stores. The instruction after a branch statement gets executed even if the branch is called. The rest is just details (extend to half-words and bytes at your convenience). There are no index registers, no flags, no predicates, nothing. Congratulations, you are now qualified to program a MIPS processor.
          • Re: (Score:3, Informative)

            Hey, that's pretty cool, thanks :) One thing that did surprise me is that the instruction after a branch is always executed. What's up with that? Does that mean in practice after a branch there is always a no-op?
            • Re:MIPS patents? (Score:5, Informative)

              by Jamie Lokier (104820) on Thursday September 14 2006, @05:52AM (#16102787) Homepage
              No, often you can find an instruction to put after the branch. Sparc is the same. It's called the "branch delay slot", and it's a way of reducing the pipeline flush penalty.
            • Re: (Score:3, Informative)

              by Hal_Porter (817932)
              In early, in order non superscalar, Risc chips branch delay slots are natural, since the instruction following the branch has almost completed execution by the time the branch is taken.

              Later chips, notable Alpha, don't do this because the number of natural branch delay slots would vary with implementation. To avoid it, you need to add logic to stall the pipeline until the branch result is known. The idea behind MIPS was to build a simple processor without this logic that could be clocked at enormous frequen
        • Re: (Score:3, Informative)

          by AuMatar (183847)
          Many don't- UIUC teaches MIPs asm to CS students (and x86 to the comp engs). But just about every school teaches processor design on MIPs- x86 is just too difficult to design a decoder for in 1 semester.
  • by BadAnalogyGuy (945258) <BadAnalogyGuy@gmail.com> on Wednesday September 13 2006, @11:19PM (#16101559)
    Are we upset that some defunct chip designer isn't getting their cut? Or is it that the Chinese are making cheap computers for themselves instead of for us? Or maybe it's that the Chinese aren't outsourcing their production to the West?

    I don't know what's the problem here. It sounds like a great idea to put as many people on the internet as cheaply as possible because more people means more information and more information transfer. Now Wang Chung in the sticks can be just as up to date with government propaganda as Chung King in Shanghai is.

    Bruce Lee unavailable for comment.
    • Now Wang Chung in the sticks...

      Everybody have fun tonight,
      Everybody Wang Chung tonight ...
    • Re: (Score:2, Informative)

      by Anonymous Coward
      Well, I'll ignore the racist tone of your comment (Wang Chung, Chung King, etc) - but MIPS is hardly a product of a defunct chip designer. I know, I work for them as a product engineer.

      In fact, MIPS is the #1 architecture in several market segments, including:
      Cable STB 76%
      Satellite STB 30%
      DVD Recorders 70%
      Cable Modems 95%
      Internet Backbone 40%
      DSL 52%
      WLAN 55%
      VoIP 72%

      See http://www.mips.com/ [mips.com] for more information on that.

      -Bruce Chin
      • Re: (Score:2, Informative)

        I see your MIPS and raise you an ARM [arm.com]
        • Re: (Score:3, Insightful)

          A practical difference between MIPS and ARM is that there are a number of MIPS clones which don't have to license anything from MIPS, provided they leave out the patented instructions. Whereas, cloning an ARM gets lots of hassle from ARM Ltd. Even just writing a software simulator for ARM is a problem(!) - this is why Qemu only emulates old ARMs.

          So if someone's going to implement one of those instruction sets, it will tend to be MIPS if they're designing their own chip, and either of them if they're buyin
    • by Fulcrum of Evil (560260) on Wednesday September 13 2006, @11:35PM (#16101624)
      Assuming that you're actually serious, someone owns those designs - cheap PCs are a laudable goal, but that's no justification for ripping off a bunch of people.
      • The summary states that the Godson-2 chip is 95% compatible with a R10000. That doesn't mean it's a direct copy of the R10000. It could just mean they use the 95% of the instructions that the R10000 uses (the ones that aren't patented). But without further details, we can't tell at this point.
        • The implication in the article and the comment I responded to was that China ripped off the design and the comment I responded to implied that that was OK. Given China's history of playing fast and loose with IP, I find the implications plausible.
          • Patent issues are only likely to be problematic if the Chinese try to sell these machines in the U.S. If they are for the Chinese market there really is very little that the MIPs folks can do, even if they are using MIPs patents.

            As much as I would like to be able to get my hands on an inexpensive MIPs-alike Linux box I don't think this is going to be available in my neck of the woods anytime soon.

          • I can imagine that maybe Chinese designers considered just making a copy, but then deciding to work around applicable IP just in case they come up with something worth exporting.
      • Re: (Score:3, Insightful)

        by hey! (33014)
        but that's no justification for ripping off a bunch of people.

        Actually intellecutal property "owners" don't really have a fundamental expectation of having the same monopoly on ideas in other countries that the do in their own.

        China, however, is a WIPO country. If these guys are cheating with the collusion of the Chinese government, the government may be reneging on its commitments; theyh would be getting protection for their inventors without affording equal protection to foreign inventors. On the other
      • by Noodlenose (537591) on Thursday September 14 2006, @04:17AM (#16102566) Homepage Journal
        I have no problem with Chinese people--but I fucking hate their country and everything it stands for.

        You're of course trolling, but your lacking maturity makes this acceptable.

        Nevertheless there is nothing more abstract and idiotic to say "I hate this country". What do you hate? Is its rolling hills, its rivers or panda bears? Or might it be that you have a problem with Chinas government and its struggling reformist arm?

        Well, you should say so. There are millions of trolls on Slashdot, but why not aspire to be a troll with something to say?

      • Re: (Score:3, Insightful)

        by RAMMS+EIN (578166)
        ``The Chinese are already a big enough economic threat to the rest of us;''

        What makes you think that? China's economic boom is due to it being beneficial both to China and to its trade partners. After all, if it weren't beneficial to them, why would they engage in the trade?

        ``they certainly don't need freebies. Besides, isn't it interesting how despite their "internationally competitive" universities, "brilliant minds" and "unlimited resources," they can't even design a relatively simple CPU without ripping
  • by UbuntuDupe (970646) on Wednesday September 13 2006, @11:24PM (#16101586) Journal
    I seem to recall that 200 MHz and an 8 Gig hard drive was top of the line, some time during the 90's. Such computers seemed to handle word processing, web browsing, email, etc. just fine. What would those components cost now? Not very much because of miniaturization. A $125 computer should be no big deal right?

    So how's that $100 PC coming along? WHAT?? Why do you need those kinds of specs?
    • by grumbel (592662) <grumbel@gmx.de> on Wednesday September 13 2006, @11:34PM (#16101621) Homepage
      Such computers seemed to handle word processing, web browsing, email, etc.

      Not when you want to use OpenOffice and Firefox. I am not sure if they really want to, but todays applications simply require quite a bit more CPU and RAM then yesterdays applications, even for the very same jobs. So unless they also write the low-spec software, they better make sure that they have enough power to run current days applications.

      • I think "word processing" is a bit advanced for people who have never used PC's before. A simple text editor would be a revolution, people are still going to type (and somehow typing turns into economic upturn). After people have exhausted their use of the plain text editor (I like "Joe [sourceforge.net]" for linux) and have move the society forward, they can get computers that support OpenOffice.

        Besides, lightweight applications already exist. Even better, they are stable. Resurrect them!
    • Re: (Score:3, Insightful)

      by mcrbids (148650)
      I seem to recall that 200 MHz and an 8 Gig hard drive was top of the line, some time during the 90's. Such computers seemed to handle word processing, web browsing, email, etc. just fine. What would those components cost now? Not very much because of miniaturization. A $125 computer should be no big deal right?


      Don't forget the concept of the minimum cost of production.

      It doesn't actually cost (much) more to produce a 300 GB HDD than an 8 GB HDD. You have the same basic amount of aluminum, wire, circuit boar
    • Re: (Score:3, Interesting)

      by evilviper (135110)

      I seem to recall that 200 MHz and an 8 Gig hard drive was top of the line, some time during the 90's. Such computers seemed to handle word processing, web browsing, email, etc. just fine.

      Yes, they ran Netscape 3.0 and Windows 95 just fine. Similar software today, however, is much better than it used-to be, which is why almost nobody uses that old software on their new computers.

      Though, you aren't extremely far off. Something like a 400MHz P2 is fast enough for things like DVD playback, and most office app

      • Re: (Score:3, Insightful)

        by drsquare (530038)
        Yes, they ran Netscape 3.0 and Windows 95 just fine. Similar software today, however, is much better than it used-to be, which is why almost nobody uses that old software on their new computers.


        Is the software really better? Compare the system requirements for Word XP to Word 95, and tell me how much extra functionality it really has. People upgraded from Windows 95 because it crashed so often, not because the newer versions had more functionality.
  • by davidwr (791652) on Wednesday September 13 2006, @11:32PM (#16101610) Homepage Journal
    I've seen several "house brand" PCs from major retailers that ran under $250 with Windows and under $150 without when on "we do this almost every week" sales. Yes I know what "loss leader" means but at these prices the Linux boxes probably wholesale for $150-$175. Large school systems and other institutions would probably pay very close to wholesale.
    • by WuphonsReach (684551) on Wednesday September 13 2006, @11:54PM (#16101679)
      Hmm, $150 is a tough price point to hit for a regular PC if you're at all picky about components.

      $45 CPU (AM2 Sempron 2800+, which means upgrade capability later)
      $65 M/B (GeForce 6150 w/ integrated video)
      $55 2x256 or 1x512MB (or $25 256MB single-stick)
      $20 DVD-ROM
      $25 Case+PSU
      $45 Hard drive
      ===
      $255

      More like $300 once you buy a reasonably good case w/ PSU for $50-$75. And it would be expandable to put more memory and a more powerful CPU in it down the road.

      You could still probably shave $100 off that price if you go for close-out deals, really cheap motherboards, older CPUs that are only $20ea, 256MB of RAM, and a really cheap case+PSU that will probably catch fire right after the warranty expires.

      (The machines I'm building for work are around $500 for parts, but those are dual-core w/ 2GB RAM.)
      • It doesn't really matter how hard it is to hit the $150 price point. Fry's electronics does it all the time. They have an add in their flyer just about every week for a brand spanking new x86 PC for $150.
  • I really can't complain about the sentiment of wanting to provide computers for all. Why do I get the feeling though that the only reason the government wants to give people there access is so that they can find more ways to pull mone into Chinas society. Regardess, $150 PCs isnt suh a great deal.

    We've all known MIT has been working on the $100 laptop project for some time. http://laptop.media.mit.edu/ [mit.edu]

    A 500Mhx chip, etc... It might be inadequate for most programs that arent specifically made to work with it
  • by OldManAndTheC++ (723450) on Wednesday September 13 2006, @11:50PM (#16101666)

    The system will come bundled with lots of open-source software, including the famous Radiant Dragon Pearl 2.0, which is known as the Perl of China, written by Won Ton, who is known as the Larry Wall of China.

  • by patio11 (857072) on Wednesday September 13 2006, @11:59PM (#16101692)
    "We were going to pirate it, but couldn't figure out how."
  • produce several thousand low-cost PCs
    They're going to have a hard time making those CPUs cost effective if they're only doing a few thousand. I'm thinking that either something was lost in translation, or the $150 price is some estimate after sales ramp, or it's all calculated in that every wishy-washy government slush fund kind of way.

    Anyone care to guess what fab technology they're using?
  • by joeykiller (119489) on Thursday September 14 2006, @12:17AM (#16101745) Journal
    In earlier coverage on Slashdot of this chip (see the initial announcement [slashdot.org], the follow up [slashdot.org] and the announcement of a 64-bit variant [slashdot.org]), at least in the coverage of the 32-bit Dragon version of the chip, no one blamed the chinese for ripping of anything. I even remember someone saying that the MIPS specification were free to use for anyone, as long as they paid around $20 for access to the specs. What has happened since then, and what is different in this case from, say, AMD cloning til Intel instruction set?

    The principal investigator of the Godson program, Hu Weiwu, have some colorful comparions [eetimes.com] to houses and bedrooms when he tries to explain why he means that the Godson-2 processor does not infringe on any patents or intellectual properties.
    • no one blamed the chinese for ripping of anything.

      You're kidding, right? Did you actually look through those comments? There are numerous accusations.

      and what is different in this case from, say, AMD cloning til Intel instruction set?

      AMD didn't just say one day "We're going to clone Intel chips". They had a contract with Intel, which allowed them to use both the instruction set, and the architecture of Intel's x86 chips. Intel did that because IBM demanded a chip with a second supplier.

      AMD went to court

  • by the_humeister (922869) on Thursday September 14 2006, @12:37AM (#16101795)
    This is especially when I can get a used computer with decent specifications (Pentium III, 1 GHz, etc) for approximately $25-$50 at the local surplus store.
    • Re: (Score:3, Insightful)

      by MarkByers (770551)
      This is especially when I can get a used computer with decent specifications (Pentium III, 1 GHz, etc) for approximately $25-$50 at the local surplus store.

      Now try buying a few hundred million used computers at your local surplus store and see if you can still get the same deal. China has a lot of people and buying computers from American second hand stores isn't really a feasible business plan for a company trying to make ground in the Chinese market.
  • XBox (Score:3, Insightful)

    by kyb (877837) on Thursday September 14 2006, @01:41AM (#16102094)
    XBox: Intel Celeron 733 MHz CPU, nVidia GeForce 3MX, 64 MB of RAM, 10 GB hard disk, a DVD drive and 10/100 Ethernet.
    Cost new: $125

    So there's already a 125$ pc that can run linux in the mass market here for $125. The specs aren't quite as good as the chinese one, but it is quite a few years old now, and has a well known intel processor and graphics accelerator.

    kyb
  • by rbanffy (584143) on Thursday September 14 2006, @10:06AM (#16104612) Homepage
    Cool. Not only Windows-free. It's Windows-proof ;-)

    (OK... I remember there was a Windows NT for MIPS, but I bet it won't run on these. Besides that, who wants Windows NT 3.1 again?)
    • Re: (Score:2, Interesting)

      The point wasn't that this is going to affect the 1 Laptop per child initiative.

      It was that building a computer for relatively cheap (that still functions) is quite possible. I'm not very surprised that china can build $150 laptops... and the government will still make a healthy profit on it probably.
    • by shadow_slicer (607649) on Thursday September 14 2006, @12:43AM (#16101817)
      'Instriial espionnage' is not needed. The MIPS instruction set and architecture are standard reading for anybody in the field. They're not saying they copied the layout or instruction set, it's more like the API.

      All processors have a language they understand, a sequence of bits that have an arbitrary meaning to them. And these are usually published far and wide, so that people can write compilers and operating systems and assemblers for this processor. MIPS in particular is very popular to study because the simple structure makes it possible for teachers to make creating a VHDL or Verilog implementation of a simplified MIPS instruction set into a half-semester project.
      In fact I doubt their implementation is anywhere near the same caliber as the Pentium III implementation, even if they claim the same speed. What probably happened is they have access to more modern, smaller fabrication methods so they can cram more transistors into the pipeline. And even soft IP cores in FPGAs can hit 200MHz, so a well designed core could probably hit 500 MHz in an ASIC.

      That being said, creating a full super-scalar CPU implementing even 95% of the MIPS 64-4 version of the instruction set in silicon is difficult. I was not familiar with this specification, but a quick search on google reveals that
      The Mips R10000 is a dynamic superscalar microprocessor that implements the 64-bit Mips-4 Instruction Set Architecture. It fetches and decodes four instructions per cycle and dynamically issues them to five fully pipelined low-latency execution units. Instructions can be fetched and executed speculatively beyond branches. Instructions graduate in order upon completion. Although instructions execute out of order, the processor still provides sequential memory consistency and precise exception handling.The R10000 is designed for high performance, even in large real-world applications which have poor memory locality. With speculative execution, it calculates memory addresses and initiates cache refills early. Its hierarchical nonblocking memory system helps hide memory latency with two levels of set-associative, write-back caches.
      This is a really beefy processor that was probably state of the art in its time. Of course that was over 10 years agos. Is it really so suprising China is only 10 years behind in chip design? After all aren't most of the chip fabrication facilities in east Asia? I'd imagine there would be quite a few people who after a few years decide they want to be on the other end of the process.
    • by 808140 (808140) on Thursday September 14 2006, @01:01AM (#16101895)
      It's far cheaper than what (the Chinese anyway) currently have to shell out for a computer system. It may not reach impoverished farmers in Guizhou province, but it will certainly increase the number of people who can afford a computer.

      However, I anticipate that no one will buy it. Computers are too expensive for many Chinese to own personally, but "internet cafes" ("gaming cafe" would be a more accurate name) are plentiful and extremely cheap -- 2 or 3 yuan per hour is typical (that's about 25 - 30 cents US). PC gaming is huge in the PRC (consoles never really caught on), and that's what the vast majority of Chinese use their machines for -- that and chatting, mostly on QQ, which GAIM and friends do not support*.

      The result is that most Chinese are routinely exposed to Windows, and worse, they're addicted to a wide variety of Windows-only software. While owning your own machine is certainly a nice perk, the question they will be asking themselves is, do I want to shell out 125 dollars for a machine that won't run any software I want, or do I want to suffer through not having my own machine, and buy a USB memory stick instead, and do all my computing at the local internet cafe?

      My guess is that for the vast majority of Chinese, the latter will seem like a much sounder choice. A 125 dollar x86-compatible machine would be one thing, but if all it can run is Linux, the Chinese won't go for it. Linux penetration in China is virtually nil, except maybe in the government, but they're not the types that would buy 125 dollar, 500MHz desktops.

      Thankfully, Chinese support is much better in Linux now than it used to be, but there are still no decent free Chinese fonts -- something that, as a Chinese speaker who uses Linux exclusively, I am very aware of. This company probably would think nothing of bundling MS's SimSun and SimHei fonts with their distribution, as they've thought nothing of using a rip off MIPS chip, but that would be copyright infringement and in my mind wrong. I personally use SimSun and SimHei, but I paid the MS tax when I bought my thinkpad with XP pre-installed (in China, no less). The $125 laptop doesn't come with a Windows license.

      All in all, it looks like a bust. It's cool, though.

      (*There have been a few attempts to port QQ to Linux, but Tencent adds features to the QQ protocol much too quickly to keep up. Lack of support for wanted features would make Linux seem broken, even though the real culprit is a complex, proprietary, binary protocol with built in obsolescence... but hey, they don't know that.)