HOME

TheInfoList



OR:

BTRON (Business TRON) is one of the subprojects of the
TRON Project TRON (acronym for The Real-time Operating system Nucleus) is an open architecture real-time operating system kernel design. The project was started by Professor Dr. Ken Sakamura of the University of Tokyo in 1984. The project's goal is to create ...
proposed by
Ken Sakamura Ken or KEN may refer to: Entertainment * ''Ken'' (album), a 2017 album by Canadian indie rock band Destroyer. * ''Ken'' (film), 1964 Japanese film. * ''Ken'' (magazine), a large-format political magazine. * Ken Masters, a main character in t ...
, which is responsible for the business phase. It refers to the
operating system An operating system (OS) is system software that manages computer hardware, software resources, and provides common services for computer programs. Time-sharing operating systems schedule tasks for efficient use of the system and may also in ...
s (OS), keyboards, peripheral interface specifications, and other items related to personal computers (PCs) that were developed there. Originally, it refers to specifications rather than specific products, but in reality, the term "BTRON" is often used to refer to implementations. Currently, Personal Media Corporation's B-right/V is an implementation of BTRON3, and a software product called "" that includes it has been released.


Specifications

As with other TRON systems, only the specification of BTRON has been formulated, and the implementation method is not specified. Implementation is mentioned in this section to the extent necessary to explain the specification, but please refer to the Implementation section for details.


BTRON1, BTRON2, BTRON3

The BTRON project began with Matsushita Electric Industrial and Personal Media prototyping "BTRON286," an implementation on a 16-bit CPU 286 for the CEC machine described below. BTRON1 specifications include the BTRON1 Programming Standard Handbook, which describes the OS API, and the BTRON1 Specification Software Specification. which describes the OS API. BTRON2 is planned to be implemented on , and only the specification"BTRON2 Kernel Standard Handbook" has been created and published. It is planned to be implemented on evaluation machines equipped with TRON chips made by FujitsuTRONWARE Vol. 7 and named "2B".TRONWARE Vol. 9 One of its features is that all OS-managed computing resources such as memory, processes, and threads are handled in a real/pseudomorphic model, a feature of BTRON. SIGBTRON's TRON chip machine MCUBE implemented "3B," which is 32-bit and uses an ITRON-specification RTOS (modified from "ItIs") for the
microkernel In computer science, a microkernel (often abbreviated as μ-kernel) is the near-minimum amount of software that can provide the mechanisms needed to implement an operating system (OS). These mechanisms include low-level address space management, ...
. 3B and The B-right specification used in , etc. is "BTRON3" (currently, the microkernel is I-right); the specification that B-right/V conforms to is published as the BTRON3 specification.


μBTRON

This is a BTRON subset that was envisioned as a popular version. With the performance of computer hardware at the time of its conception, a computer that can implement the ideal BTRON would be a workstation-class computer, so it is also positioned as BTRON for general households. BTRON is a subset of a dedicated machine with fixed applications (like a dedicated machine word processor), and is based on the concept of a "dedicated communication machine. Specific applications include "communication with oneself (creative activities)", "communication with others (Internet communication)", and "communication with machines" (e.g. data exchange with peripheral devices, such as digital cameras). Linkage with the last peripheral device was envisioned as the key to adding functions to a dedicated machine to which no additional programs could be added. This peripheral device was called "electronic stationery". For communication with these peripherals, a prototype of the real-time "μBTRON bus" (see below) was developed. Note that , a BTRON-equipped PDA realized later, was given the name "electronic stationery" and also called μBTRON, but it was not subsumed to become a dedicated machine and did not implement the μBTRON bus.


Hardware


TRON keyboard

Although it does not bear the BTRON moniker, the TRON keyboard is intended for use with BTRON.


μBTRON bus

The basic specification is based on
IEEE 802.5 Token Ring network IBM hermaphroditic connector with locking clip. Screen contacts are prominently visible, gold-plated signal contacts less so. Token Ring is a computer networking technology used to build local area networks. It was introduc ...
with modifications. A real-time bus specification for LANs that can be considered as an alternative to
MIDI MIDI (; Musical Instrument Digital Interface) is a technical standard that describes a communications protocol, digital interface, and electrical connectors that connect a wide variety of electronic musical instruments, computers, and re ...
. Other references in this section:


Features


TAD

For data handled by BTRON, a basic format for exchange called TAD (Tron Application Databus) has been defined, and basic data can be freely exchanged between arbitrary applications, advocating ''Databus''. Standards have been established for text (including word-processing modifications) and graphics (both raster and vector), and for the rest, a header indicating the length of the chunks is common at the beginning, so that applications can skip over unsupported data if they find it. Data chunks are referred to as segments in the BTRON specification, etc. In addition, since the TRON chip was big-endian, TAD was also designed in big-endian, but when BTRON286 was implemented, a quasi-TAD that was modified to little-endian was defined, and the current widely used implementations are all in that format, including the one on MCUBE that uses the TRON chip. Image (raster) data is defined in the direction of adapting to any hardware scheme, including palette and direct specification, packed pixels and planes, and so on. Both are solid, uncompressed. For compression, only the MH ( facsimile#1D encoding (MH)) method for black and white images was defined. There are working implementations of moving images, but there is no description of any time axis within the published TAD specification. In actual applications, there are some that store their own data as TAD segments according to TAD policy, but there are also some that read and write records directly instead of using TAD.


Real body/pseudo body

BTRON adopts a network-type model with an arbitrary directed graph structure called a real/pseudomorphic model as a file management model, instead of the conventional tree structure model with directories (folders). BTRON2 also manages all computer resources in a real/pseudo model. As for the functions provided to users, the real/pseudomodel of BTRON (BTRON1 and BTRON3, which are widely used implementations) is a convenient hypertext environment. In the past, files and folders were used to distinguish between entities that contain data and indexes that point to them, but BTRON has done away with such distinction. In the body/pseudo-body model, the entire body of data is defined as a Real Object, and the part of the Real Object that points to another Real Object is defined as a Virtual Object. A real body is like a file in the sense that it holds data, but it is also like a folder in the sense that it has the ability to point to another real body by the temporary body it contains as its contents. While almost all current
UNIX Unix (; trademarked as UNIX) is a family of multitasking, multiuser computer operating systems that derive from the original AT&T Unix, whose development started in 1969 at the Bell Labs research center by Ken Thompson, Dennis Ritchie, and ot ...
do not allow the creation of alias hard links that point to directories, BTRON's real/pseudo links are like hard links that can freely create arbitrary links including such links. In Unix, a link to the parent indicated by "..." is used. In Unix, the fact that there is only one link to the parent indicated by "..." is a problem, but this is not a problem in BTRON because it has abandoned tree-like management in the first place. Confirmation that the real body is no longer referenced by deleting a link is done by the
reference count In computer science, reference counting is a programming technique of storing the number of references, pointers, or handles to a resource, such as an object, a block of memory, disk space, and others. In garbage collection algorithms, referen ...
method, as in the Unix file system, but since arbitrary structures are allowed, it is known as a weakness of the reference count method. However, since arbitrary structures are allowed, as is well known as a weakness of the reference-counting method, loops can cause the file system to occupy disk space even though it cannot be reached from anywhere. Currently, a function is implemented to check for such entities by disconnecting the file system or (in the case of system disks) booting the system in a special state and performing a check similar to
fsck The system utility fsck (''file system consistency check'') is a tool for checking the consistency of a file system in Unix and Unix-like operating systems, such as Linux, macOS, and FreeBSD. A similar command, CHKDSK, exists in Microsoft Windows ...
as well as the so-called stop-the-world method of
garbage collection Waste collection is a part of the process of waste management. It is the transfer of solid waste from the point of use and disposal to the point of treatment or landfill. Waste collection also includes the curbside collection of recyclable m ...
. In addition, most of the previous versions of the software Also, unlike most previous file systems, the name ("real name") is basically not used for identification (as an ID) on the system side, so the user can give a name freely (currently there is a length limit for implementation reasons). Currently, BTMemo for Windows is available as software that reproduces the feeling of using BTRON. The existing implementations of BTRON3 and BTRON1 realize the above functions on a file system with multi-record functions: one file corresponds to one entity, has a record containing the data body, and also has a "link record" that points to a file corresponding to the entity to which the temporary body contained by the entity points. In addition, there is a "link record" that points to the file corresponding to the real body to which the temporary body that the real body contains points. Because of this design, the real body data by TAD itself is not affected by the way links are represented in the underlying system.


Problems

One of the problems currently occurring is that only a maximum of 64Ki files can be placed on a single volume (such as a hard disk partition) due to the implementation of the file system inherited from BTRON286, and the number of real bodies is limited accordingly. It has been pointed out that the number of real bodies is limited accordingly. The current release of Cho-Kanji V has the same limitation. This is because the file ID is a fixed-length integer of 16 bits, and it is difficult to extend it while maintaining binary compatibility with the current system. Therefore, a redesign and implementation is needed to extend this real body constraint.


Real-time operation

The BTRON-specification OS is a
real-time OS A real-time operating system (RTOS) is an operating system (OS) for real-time applications that processes data and events that have critically defined time constraints. An RTOS is distinct from a time-sharing operating system, such as Unix, which m ...
, capable of stably processing tasks that require real-time processing, such as video and audio. BTRON3 uses
ITRON Itron is an American technology company that offers products and services on energy and water resource management. Its headquarters is in Liberty Lake, Washington, United States. Its products are related to smart grid, smart gas and smart water ...
as a microkernel, and although care must be taken to avoid memory page-out, real-time processing is possible. In Windows, the graphics card driver is tuned by the manufacturer, while in BTRON there is no such graphics acceleration, etc., so screen rewriting can feel slow. BTRON has short boot time, though it stems from its limited number of daemons and supported devices, which makes it less of an advantage compared to other operating systems.


HMI

Not only BTRON, but the TRON project has also standardized the human-machine interface and published it as the TRON Human Interface Standard Handbook, and BTRON's user interface is designed in accordance with this.


Direct Operation

In BTRON, basically everything on the screen can be operated with a pointing device such as a mouse or electronic pen. To make it easy even for users who are not familiar with computers, not only can the size of the
window A window is an opening in a wall, door, roof, or vehicle that allows the exchange of light and may also allow the passage of sound and sometimes air. Modern windows are usually glazed or covered in some other transparent or translucent materia ...
be changed, but also the selection text and graphics can be dragged and dropped directly onto
drag and drop In computer graphical user interfaces, drag and drop is a pointing device gesture in which the user selects a virtual object by "grabbing" it and dragging it to a different location or onto another virtual object. In general, it can be used to ...
(commonly called "grab-and-poi") to move or copy. Application launching is basically done by double-clicking or otherwise launching a temporary body that represents the actual body of a document, etc. This is the same operation as selecting an application based on meta-information such as file type and creator in Mac OS and extension linking in Windows, but BTRON In BTRON, there is basically no other way to start an application. For example, when transcribing a new text, an application is first launched without specifying the editing target, whereas in BTRON, a template of the real body is registered along with the application, and work is started by duplicating the real body. To be more specific, open a special window called "Gather Source Papers", and from there drag a pseudo-form called "Manuscript Paper" for editing text, and drop it into the desired window. (Normally, this operation is to move the pseudostat, but due to the peculiarities of the "Paper Gathering" application, the real body of the new document is duplicated and a pseudostat is created that points to the real body. Operations common in other operating systems, such as starting an application first and then creating a new document or loading an existing document, are not possible with BTRON. Some people find it easy to understand because it matches real-world actions such as "preparing a new paper or an existing document before writing," while others find it difficult to understand unlike other OSs. The style of selecting the subject of the operation first and then instructing the operation on it is similar to the
Xerox Star The Xerox Star workstation, officially named Xerox 8010 Information System, is the first commercial personal computer to incorporate technologies that have since become standard in personal computers, including a bitmapped display, a window-based ...
or the
Smalltalk Smalltalk is an object-oriented, dynamically typed reflective programming language. It was designed and created in part for educational use, specifically for constructionist learning, at the Learning Research Group (LRG) of Xerox PARC by Alan Ka ...
system, which was more object-oriented.


Enableware

TRON, which we call enableware, has also focused on
universal design Universal design is the design of buildings, products or environments to make them accessible to people, regardless of age, disability or other factors. It addresses common barriers to participation by creating things that can be used by the ma ...
since the beginning of the project. The BTRON-specification OS allows users with various disabilities to freely change the typeface and size of menu items and actual names, the size of the mouse pointer, the size and display method of the temporary body, and the width of the window
scroll bar A scrollbar is an interaction technique or widget in which continuous text, pictures, or any other content can be scrolled in a predetermined direction (up, down, left, or right) on a computer display, window, or viewport so that all of the c ...
. The design of the mouse pointer, for example, is not to be changed except in special cases, to achieve a consistent feel. To avoid confusion even when using an application for the first time, the order of menus has been standardized. Design guidelines that take into account the use of multiple languages have also been established. The above functions are also implemented in commercial TRON specification OS.


TRON code

BTRON (like OS/omicron, etc.) was designed on the premise of representing characters in 16 bits. The character code for TAD, the data format, is , which switches between multiple 16-bit planes by escaping 0xfe**, allowing the space to be expanded arbitrarily. The current implementation uses 32 bits as the internal code.


Implementation

Shown in order of oldest to newest. First, Matsushita Electric Industrial and Personal Media produced a prototype of BTRON286, an implementation on a 16-bit CPU 286, assuming the CEC machine described below. The specification for this is BTRON1 (also known as BTRON/286 in the early days). Implementations based on this include "ET Master" in Matsushita Communication Industry's "PanaCAL ET", "1B/Note" in the Panacom M series sold by Personal Media, and "1B" in the "1B/V" series for
PC/AT compatible machine The IBM Personal Computer/AT (model 5170, abbreviated as IBM AT or PC/AT) was released in 1984 as the fourth model in the IBM Personal Computer line, following the IBM PC/XT and its IBM Portable PC variant. It was designed around the Intel 80 ...
s. For BTRON2, a specification was prepared, and its implementation on GENESYS, an evaluation machine equipped with Fujitsu's TRON chip F32/300, was planned. An implementation by Personal Media, named "2B". MCUBE, a TRON chip machine produced by SIGBTRON, implemented "3B", which was 32-bit and used an ITRON-specification OS (ItIs) for its microkernel; implementations based on 3B included "B-rights" such as the (V810), PC/ The specification that B-right/V conforms to is published as the BTRON3 specification. Products that include B-right/V " is sold to the general public and is easy to obtain. Although it is not called BTRON, T-Shell, a middleware for
T-Kernel T-Kernel is an open source real-time operating system (RTOS) designed for 32-bit microcontrollers. It is standardized by the T-Engine Forum, which distributes it under a ''T-License'' agreement. There is also a corresponding Micro T-Kernel (μT-Ker ...
, provides the same functions as some of the outer shell of Cho-Kanji.


History

In this section, all other descriptions not otherwise mentioned are from the "History" of the TRON Association website, referenced in the web archive,.


Start of the BTRON sub-project

The earliest records include the reference to "B-TRON" in "TRON Project" in the Proceedings of the International Conference on Microcomputer Applications '84 (1984), and "TRON Total Architecture" in "TRON Total Architecture," and "Proposal of a Unified Operation Model for BTRON" in "Information Processing" Vol. 26 No. 11 (1985/Nov, 25th Anniversary Special Issue). In 1986, the BTRON Project was fully launched as a sub-project of the TRON Project, and the BTRON Technical Committee was established in the TRON Association. The initial concept was summarized in an article in IEEE Micro's special issue on TRON (Vol. 7, No. 2 (1987/Apr)), and can be read in "TRON Introduction," a translation of the same issue. The June 1988 issue of TRON Review contains several screen shots and a report on BTRON286 by Matsushita Electric Industrial Co. In December 1988, the TRON Association released an outline of the "BTRON/286" specification, and the following year, in March 1989, Matsushita Electric completed a practical level machine that was designated as the "Educational PC Specification Standard Concept," which was intended for educational use as described in the next section.


Introduction plan for educational PCs

Based on the "Second Report on Educational Reform" issued by the Rinkyoin Council in April 1986, the Computer Education Development Center (CEC) was established in July of the same year under the joint jurisdiction of the Ministry of Education and the Ministry of International Trade and Industry. The CEC established the Educational Software Library in April 1987, and held a symposium in July 1987. In August of the same year, CEC called for prototypes of educational personal computers under the title of "CEC Concept Model '87", and the prototypes gathered in response to the call were exhibited to the public in July of the following year, showing a willingness to show the direction of educational personal computers. In March 1989, CEC made the decision to use TRON for personal computers to be installed in schools. Norioki Kobayashi, Matsushita Electric's Record of Success, Chapter 1 This seemed to be a stepping stone to the spread of (B)TRON, but it became the subject of a complaint in the trade issue described in the next section. The keyboard and key layout of the "educational PC" presented at this time was not based on the TRON keyboard, but on the New JIS layout. It is not unheard of to use a product that does not have a large market share for educational use, such as the Acorn Computer in the UK.


Trade Issues

In 1989, a report by the
Office of the United States Trade Representative The Office of the United States Trade Representative (USTR) is an agency of the Federal government of the United States, United States federal government responsible for developing and promoting Trade policy of the United States, American trade ...
cited TRON as a trade barrier in Japan. The details are as follows: "1989 National Trade Estimate Report on Foreign Trade Barriers" ("Report on Foreign Trade Barriers" ( 1989)) issued by the USTR on April 12, 1989. Other Barriers" in the report on Japan's trade barriers in "1989 National Trade Estimate Report on Foreign Trade Barriers" ("Report on Foreign Trade Barriers" () 1989 edition), in Section 7 "7. In Section 7 "7. OTHER BARRIERS", TRON was one of those listed with subsections such as " Large-scale Retail Stores Act". The naming of specific systems is bizarre compared to the others, which basically list fields. The report points out that several US companies are also members of the TRON Association, but no US company is in a position to sell TRON-based PCs or communication devices, and that the Japanese government's support for TRON could give Japanese manufacturers an advantage, especially in the education sector (referring to the aforementioned CEC) and communication sector (referring to NTT's adoption of CTRON), which is already happening. Furthermore, he points out that in the education field, TRON has enabled the emergence of US OS (specifically MS-DOS, OS/2, UNIX is being excluded from the huge new market, and that in the long run TRON could affect the entire market of electronics in Japan. The last paragraph of the report states that already on September 9, 1988 (and later), the U.S. had informed Japan of its interest in these matters, and that in March 1989 negotiations were underway to provide detailed specifications for NTT's requirements, and that further information on TRON was being investigated through the Japanese government. The report concludes. The TRON Association protested in writing to the USTR representative in May, and TRON was removed. However, in June of the same year, the mass media reported "abandonment of BTRON adoption for educational PCs". For example, "Nikkei Computer" reported "BTRON-based educational PCs: Standardization virtually impossible". Although there were twists and turns, in the end, the introduction of BTRON proposed by CEC was not implemented, and what was introduced to school education was
MS-DOS MS-DOS ( ; acronym for Microsoft Disk Operating System, also known as Microsoft DOS) is an operating system for x86-based personal computers mostly developed by Microsoft. Collectively, MS-DOS, its rebranding as IBM PC DOS, and a few ope ...
machines, including the
PC-9801 The , commonly shortened to PC-98 or , is a lineup of Japanese 16-bit and 32-bit personal computers manufactured by NEC from 1982 to 2000. The platform established NEC's dominance in the Japanese personal computer market, and, by 1999, more th ...
. This led to a period of stagnation for the TRON project, especially the BTRON project, with some labeling it as a "failure. The background to this uproar is that in the 1990s,
NEC is a Japanese multinational information technology and electronics corporation, headquartered in Minato, Tokyo. The company was known as the Nippon Electric Company, Limited, before rebranding in 1983 as NEC. It provides IT and network soluti ...
had the majority share of the PC market, and at the time of the CEC selection in 1988, it was opposed by a coalition of all other companies, led by Matsushita, which also included IBM, "For example, note 25 of "TRON Today" in
Shozaburo Nakamura is a Japanese business leader and politician. He served in the House of Representatives of Japan and was the minister of justice from 1998 to 1999. Career Nakamura was a business leader. He served in the lower house of the Japanese Diet. He als ...
's Dennou Mandara (1995 edition) says, "At the time, the anti-TRON forces were NEC and Microsoft, which had already established themselves. It is a well-known fact that NEC and Microsoft had already established their positions. In addition to the long-standing Japan-US trade friction, there was also the Japan-US high-tech friction of the 1980s,
Japan bashing Anti-Japanese sentiment (also called Japanophobia, Nipponophobia and anti-Japanism) involves the hatred or fear of anything which is Japanese, be it its culture or its people. Its opposite is Japanophilia. Overview Anti-Japanese senti ...
, the Nippon K.K. theory, the IBM industrial espionage case, and the cover illustration of the September 1983 issue of CACM, was still fresh in our minds, and TRON itself was still in its infancy. IEEE Micro ran a special issue on TRON (April 1987, for example), and there were factors that would have made TRON stand out in the US. According to Eiji Oshita's "Masayoshi Son: The Young Lion of Entrepreneurship,"
Masayoshi Son Masayoshi Son ( ja, 孫 正義, translit=Son Masayoshi, ko, 손정의, translit=Son Jeong-ui) (born 11 August 1957) is a Korean-Japanese billionaire technology entrepreneur, investor, financier and philanthropist. A 3rd generation "Zainichi Kore ...
, who had been working hard for some time to create an industry structure that would make his own business, software distribution, profitable, was agitated that TRON would cause Japanese industry to fall behind global standards and be left behind by the rest of the world.
Masayoshi Son Masayoshi Son ( ja, 孫 正義, translit=Son Masayoshi, ko, 손정의, translit=Son Jeong-ui) (born 11 August 1957) is a Korean-Japanese billionaire technology entrepreneur, investor, financier and philanthropist. A 3rd generation "Zainichi Kore ...
, who had been working hard to set up the industry so that it could profit from TRON, was about to "lay the rails for the destruction of TRON" with Yuji Tanahashi (then Director General of the Machinery and Information Industry Bureau) and Ryozo Hayashi (then Director of the Information Processing Promotion Division), who were introduced by
Akio Morita was a Japanese businessman and co-founder of Sony along with Masaru Ibuka. Early life Akio Morita was born in Nagoya. Morita's family was involved in sake, miso and soy sauce production in the village of Kosugaya (currently a part of Tokoname ...
. The Ministry of International Trade and Industry (MITI) stopped the introduction of TRON into schools,. The book's headline reads "Stopping the spread of TRON at the water's edge". There was an unusual display of opinion on the part of the TRON project on this matter. In the 60th issue of TRONWARE magazine edited and published by Personal Media Corporation (December 1999), p. 71, an article titled "People who blocked the TRON project" signed by the editorial staff introduced the aforementioned biography as someone who published a book "boasting of his achievements" (in blocking TRON). The article introduced Sun's opposition to the MSX and his apparent support for
UNIX Unix (; trademarked as UNIX) is a family of multitasking, multiuser computer operating systems that derive from the original AT&T Unix, whose development started in 1969 at the Bell Labs research center by Ken Thompson, Dennis Ritchie, and ot ...
. Sakamura's testimony about the conference where Sun,
Kazuhiko Nishi is a Japanese businessman and personal computer pioneer. Nishi's father ran a private school. Nishi attended Waseda University but dropped out to help found the first Japanese computer magazine, ''I/O''. Shortly thereafter he launched ''ASCII ...
, and Sakamura got together was that it was supposed to be a conference for Unix engineers, and that he and Nishi talked about technology, but Sun talked about business and seemed to be out of place. But overall, the article sums up the situation as "Is it right to destroy the seeds of original technology? In December 1988, Softbank (then Softbank Japan Corp.) Publishing Department (now
Softbank Creative is a Japanese publishing company and a subsidiary of the SoftBank telecommunications company. It was founded in 1999 and is headquartered in Tokyo, Japan. Publications ;Young Adult * : Original Japanese language publication of the Math Girl ...
) published a book titled "The Tron Revolution" (ISBN 4-89052-037-6).


PanaCAL ET

In preparation for the inclusion of "information" in the optional content of junior high school technology courses from 1993, the Ministry of Education started the "Educational Computer Assistance Program" in 1990. In conjunction with this, released the PanaCAL ET, an educational personal computer equipped with the BTRON286-based OS "ET Master" as a BTRON machine. The hardware was based on the Panacom M, with enhanced 24-dot font ROM and other features for educational use.http://narapress.jp/ysk/tron/panacal.html However, most of the machines introduced to schools at this time were
PC-9800 series The , commonly shortened to PC-98 or , is a lineup of Japanese 16-bit and 32-bit personal computers manufactured by NEC from 1982 to 2000. The platform established NEC's dominance in the Japanese personal computer market, and, by 1999, more th ...
, probably because they could inherit BASIC programs and data from word processing software, which had already been created in large numbers by enterprising teachers.


90s onwards

(Stub) The addition of this section is desired. * December 1989 BTRON1 software specification released. * December 1989 Development of a reservation system using BTRON by Japan Airlines * 1990 releases PanaCAL ET equipped with BTRON1 specification (based on BTRON286) "ET Master * 1991 Release of 1B/Note * 1994 Release of 1B/V1, a general-purpose PC/AT compatible machine * 1995 Release of 1B/V2 * 1996 Release of * 1996 Release of 1B/V3 * 1998 Release of B-right/V * 1999 Release of Cho-Kanji (B-right/V R2) * 2000 Release of Cho-Kanji 2 (B-right/V R2.5) * 2000 Release of GT typeface * 2001 Release of Cho-Kanji 3 (B-right/V R3) * 2001 T-Engine and T-Kernel released * 2001 Release of Cho-Kanji 4 (B-right/V R4) * 2006 Cho-Kanji V (B-right/V R4.5)


Footnotes


External links


The TRON Association

Cho-Kanji Website

Personal Media Corporation
*
BTRON Club

Sakamura and Koshizuka Laboratory

Kaoru Misaki(Hatena Keyword)

Nortia Order
Web Archive) *

Web Archive)


External sources

* Linux Insider

October 15, 2003. Retrieved July 13, 2006.

{{TRON TRON project History of software Window-based operating systems X86 operating systems 1984 software Computer-related introductions in 1984 Computing platforms Operating system families