JPS642953B2 - - Google Patents
Info
- Publication number
- JPS642953B2 JPS642953B2 JP7601180A JP7601180A JPS642953B2 JP S642953 B2 JPS642953 B2 JP S642953B2 JP 7601180 A JP7601180 A JP 7601180A JP 7601180 A JP7601180 A JP 7601180A JP S642953 B2 JPS642953 B2 JP S642953B2
- Authority
- JP
- Japan
- Prior art keywords
- microprogram
- address
- discriminant
- graphic
- straight line
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Expired
Links
- 238000012986 modification Methods 0.000 claims description 8
- 230000004048 modification Effects 0.000 claims description 8
- 238000004364 calculation method Methods 0.000 claims description 3
- 238000012545 processing Methods 0.000 description 16
- 238000000034 method Methods 0.000 description 14
- 238000009125 cardiac resynchronization therapy Methods 0.000 description 9
- 238000010586 diagram Methods 0.000 description 6
- 239000000872 buffer Substances 0.000 description 3
- 238000011161 development Methods 0.000 description 2
- 230000006870 function Effects 0.000 description 2
- 238000007781 pre-processing Methods 0.000 description 2
- AIGRXSNSLVJMEA-UHFFFAOYSA-N EPN Chemical compound C=1C=CC=CC=1P(=S)(OCC)OC1=CC=C([N+]([O-])=O)C=C1 AIGRXSNSLVJMEA-UHFFFAOYSA-N 0.000 description 1
- 238000013507 mapping Methods 0.000 description 1
- 230000004044 response Effects 0.000 description 1
Landscapes
- Digital Computer Display Output (AREA)
- Image Generation (AREA)
Description
【発明の詳細な説明】
本発明はラスタ走査形CRTにおける図形発生
装置に係り、特に高速に図形を処理するに好適な
マイクロプログラム制御の図形発生装置に関する
ものである。DETAILED DESCRIPTION OF THE INVENTION The present invention relates to a graphic generator for a raster scan type CRT, and more particularly to a microprogram-controlled graphic generator suitable for processing graphics at high speed.
図形を表示するグラフイツクデイスプレイには
ランダムスキヤン形CRT、ラスタスキヤン形
CRT、ストレージ形CRT等の各種のタイプの
CRTが用いられているが、色彩図形の表示が可
能であり、面や任意画像の表示が可能なことか
ら、近年ラスタスキヤン形CRTを用いたグラフ
イツクデイスプレイが多くなつてきている。 The graphic display that displays figures is a random scan type CRT or a raster scan type.
Various types of CRT, storage type CRT, etc.
Although CRTs are currently used, graphic displays using raster scan type CRTs have become more popular in recent years, as they are capable of displaying colored figures, planes, and arbitrary images.
第1図に示すように、ラスタスキヤン形CRT
3を用い、各ドツトの点座標に対応した色情報を
記憶する画面メモリ2を持つようにしたグラフイ
ツクデイスプレイ4では、計算機5から与えられ
る図形コマンドを解釈してドツト毎にその座標を
Xi,Yiを画面メモリ2に書き込む図形発生装置
1が必要となる。この図形発生装置1では、直線
等の図形コマンドをその図形にあつたドツトの点
列の座標Xi,Yiを求める処理を行う。図形には
直線、円、曲線等があるが、微小な直線に分解し
て表示する例が多い。つまり直線の組合せにより
任意の図形を表示できる。従つて、以下の説明は
図形として直線に限ることにする。 As shown in Figure 1, raster scan type CRT
3 and has a screen memory 2 that stores color information corresponding to the point coordinates of each dot.The graphic display 4 interprets graphic commands given from a calculator 5 and stores the coordinates of each dot.
A graphic generator 1 that writes Xi and Yi into the screen memory 2 is required. This figure generator 1 processes a figure command such as a straight line to obtain the coordinates Xi, Yi of a sequence of dots that correspond to the figure. Figures include straight lines, circles, curved lines, etc., but in many cases they are broken down into minute straight lines and displayed. In other words, any figure can be displayed by combining straight lines. Therefore, the following explanation will be limited to straight lines as figures.
直線を点座標Xi,Yi列にドツト展開するアル
ゴリズムは、J.E.Bresenham:Algorithm for
computer control of a digital plotter:IBM
SYSTEM JOURNAL,vol.4,No.1(1965)や
Y.Suenaga,et.al.:High Speed Algorithm
for the Generation of Straight Lines and
Circular Arcs:IE3 Computer,Vol.C−28,No.
10(1979)等がある。例えば第2図Aに示すよう
に直線AB(方向は0゜〜45゜の範囲とする)をドツ
ト展開する場合、A点の次の点は右上か右横のい
ずれかの点であり、これは勾配ΔY/ΔXと格子
の中点(1/2)とを比較することにより判定で
きる。即ち判別式Dを導入して
D1=ΔY/ΔX−1/2 ……D1≧0ならば右上
D1<0ならば右横
の点を選択する。これを第i−1点から第i点に
ついて適用すると、
Di-1≧0のとき Di=Di-1+ΔY/ΔX−1
(第2図Bを参照のこと。)
Di-1<0のとき Di=Di-1+ΔY/ΔX
(第2図Cを参照のこと。)
が第i点の判別式Dで、この符号により
D1≧0ならば右上
D1<0ならば右横
の点を選択する。 The algorithm for dot expansion of a straight line into point coordinates Xi, Yi columns is JEBresenham: Algorithm for
computer control of a digital plotter:IBM
SYSTEM JOURNAL, vol.4, No.1 (1965)
Y. Suenaga, et.al.: High Speed Algorithm
for the Generation of Straight Lines and
Circular Arcs: IE 3 Computer, Vol.C−28, No.
10 (1979), etc. For example, when the straight line AB (direction ranges from 0° to 45°) is expanded into dots as shown in Figure 2 A, the next point after point A is either the upper right or the right side. can be determined by comparing the gradient ΔY/ΔX and the midpoint (1/2) of the grid. That is, by introducing the discriminant D, D 1 =ΔY/ΔX−1/2 . . . If D 1 ≧0, select the upper right point. If D 1 <0, select the right horizontal point. Applying this from the i-1st point to the i-th point, when D i-1 ≧0, Di=D i-1 +ΔY/ΔX-1 (See Figure 2B.) D i-1 < 0, D i = D i-1 + ΔY/ΔX (see Figure 2 C) is the discriminant D of the i-th point, and according to this sign, if D 1 ≧ 0, then upper right, if D 1 < 0, then Select the point on the right side.
このような直線のドツト展開アルゴリズムを、
マイクロコンピユータ(即ち図形発生装置1をマ
イクロコンピユータ制御とする)で実行する例も
あるが、これだと例えば特開昭51−25934号等で
公知の直線発生ハードウエアより100倍程度処理
時間が増大する。しかし一方直線発生ハードウエ
アでは機能が限定されてしまう問題があり、機能
の柔軟性を持ちかつ高速化を図るため、ハードウ
エアとソフトウエアの中間のフオームウエア(即
ちマイクロプログラム制御)で直線を点座標Xi,
Yi列に展開するようにした例もある。 This straight line dot expansion algorithm is
There is an example of execution using a microcomputer (that is, the figure generator 1 is controlled by a microcomputer), but in this case, the processing time is approximately 100 times longer than the known linear generation hardware disclosed in, for example, JP-A No. 51-25934. do. However, on the other hand, straight line generation hardware has the problem that its functions are limited, so in order to have functional flexibility and speed up, it is necessary to use formware (i.e., microprogram control) between hardware and software to generate straight lines. Coordinates Xi,
There is also an example of expanding into the Yi column.
しかし、マイクロプログラム制御としても、前
述のアルゴリズムのように、判別式の判定や各ド
ツト毎の繰返しループ処理等に多くのステツプを
要する。第3図に直線ドツト展開のループ処理部
(前処理等は省略した)のフローチヤートを示す。
この図のように通常のマイクロプログラム制御で
は、
(1) 判別式Diの符号を判定し、正ならば(2)へ負
ならば(7)へ分岐する。 However, even with microprogram control, as with the above-mentioned algorithm, many steps are required for determining the discriminant and repeating loop processing for each dot. FIG. 3 shows a flowchart of the loop processing section for linear dot expansion (preprocessing etc. are omitted).
As shown in this figure, in normal microprogram control, (1) the sign of the discriminant Di is determined, and if it is positive, it branches to (2); if it is negative, it branches to (7).
(2) 判別式Di≧0の場合のx座標値の更新計算
を行う(0゜〜45゜ならばδx1=1)。(2) Update the x-coordinate value when the discriminant Di≧0 is performed (if 0° to 45°, δx1=1).
(3) 判別式Di≧0の場合のy座標値の更新計算
を行う(0゜〜45゜ならばδy1=1)。(3) Update the y-coordinate value when the discriminant Di≧0 is performed (if 0° to 45°, δy1=1).
(4) 判別式Di≧0の場合の次のi+1点の判別
式Di+1を求める計算を行う(0゜〜45゜ならばD1
=ΔY−ΔX)。(4) Calculate the discriminant D i+ 1 for the next i+1 point when the discriminant Di≧0 (if 0° to 45°, D1
=ΔY−ΔX).
(5) 直線の1点表示処理が終了したので、直線の
長さ0゜〜45゜ならばLC=ΔX)を−1する処理を
行う。(5) Since the process of displaying one point of the straight line has been completed, if the length of the straight line is 0° to 45°, process to subtract 1 from LC=ΔX).
(6) 直線の長さだけドツト展開したか否かを判定
するもので、LC≠0ならば(1)に戻り、LC=0
ならばループ処理から抜ける。(6) This is to judge whether the dot has been expanded by the length of the straight line. If LC≠0, return to (1) and LC=0
If so, exit from the loop processing.
(7) 判別式Di<0の場合のx座標値の更新計算
を行う(0゜〜45゜ならばδx=1)。(7) Update the x-coordinate value when the discriminant Di<0 (if 0° to 45°, δx=1).
(8) 判別式Di<0の場合のy座標値の更新計算
を行う(0゜〜45゜ならばδy1=0)。(8) Perform update calculation of the y coordinate value when the discriminant Di<0 (if 0° to 45°, δy1=0).
(9) 判別式Di<0の場合の次のi+1点の判別
式Di+ 1を求める計算を行う(0゜〜45゜ならばD2
=ΔY)。この後(5)にジヤンプする。(9) Calculate the discriminant Di + 1 for the next i+1 point when the discriminant Di < 0 (if it is 0° to 45°, D2
=ΔY). After this, jump to (5).
のように1ループ、即ち1ドツトの展開処理に最
低6ステツプを要する。尚上記の説明での判別式
Dは、第2図での判別式DにΔXを乗じたものに
置換している。このように直線ドツト展開アルゴ
リズムをマイクロプログラムで実行してもなお6
ステツプを要し、しかもこのループ部分がグラフ
イツクデイスプレイの表示速度の核となる部分で
あるため、処理性が問題になることもある。One loop, that is, one dot development process requires at least six steps. Note that the discriminant D in the above explanation is replaced by the discriminant D in FIG. 2 multiplied by ΔX. Even if the straight line dot expansion algorithm is executed as a microprogram in this way, the result is still 6
This requires a number of steps, and since this loop portion is the core of the graphic display's display speed, processing performance may become a problem.
本発明の目的は、マイクロプログラム制御の図
形発生装置に直線発生のための簡単な回路を付加
することにより、高速な直線発生能力を持つマイ
クロプログラム制御の図形発生装置を提供するに
ある。 SUMMARY OF THE INVENTION An object of the present invention is to provide a microprogram-controlled graphic generator that has a high-speed straight line generation capability by adding a simple circuit for generating straight lines to the microprogram-controlled graphic generator.
本発明は、
演算器のデータレジスタを指定するアドレスを
修飾するアドレス修飾フラグを設け、前記演算器
による演算結果の正、負のステータスを前記アド
レス修飾フラグに設定するか否かを制御する。 The present invention provides an address modification flag that modifies an address specifying a data register of an arithmetic unit, and controls whether a positive or negative status of an operation result by the arithmetic unit is set in the address modification flag.
ようにして、マイクロプログラム制御による直線
のドツト展開処理を高速化したものである。In this way, the straight line dot expansion processing is accelerated by microprogram control.
本発明になる図形発生装置の一実施例を第4図
〜第6図を用いて説明する。 An embodiment of the graphic generator according to the present invention will be described with reference to FIGS. 4 to 6.
第4図に図形発生装置1の回路構成を示す。デ
ータ処理部は、
(1) 計算機アダプタ……計算機5からの図形コマ
ンドを受けるFIFOバツフア11及び図形発生
装置1から計算機5への応答情報を入れる
FIFOバツフア12から構成される。 FIG. 4 shows the circuit configuration of the graphic generator 1. The data processing unit includes: (1) Computer adapter: FIFO buffer 11 that receives graphic commands from the computer 5 and inputs response information from the graphic generator 1 to the computer 5.
It consists of 12 FIFO buffers.
(2) データメモリ部20…図形制御情報、文字フ
オント、面のパターン等を記憶する図形発生装
置1内部RAM/ROM21を有する。アクセ
スは、マイクロプログラムからの直接アクセス
手段と、アドレスカウンタ23によるアクセス
手段とがセレクタ22により選択できる。(2) Data memory unit 20: includes a RAM/ROM 21 inside the graphic generator 1 for storing graphic control information, character fonts, surface patterns, etc. For access, the selector 22 can select between direct access from the microprogram and access using the address counter 23.
(3) 論理演算部30…小容量の2ポートレジスタ
フアイル31、Qレジスタ32、シフタ33,
34、論理演算回路35及びこれに対する入力
セレクタ36,37から構成される。出力はセ
レクタ38により、演算結果あるいはレジスタ
フアイル31のどちらかが選択できる。本演算
ユニツト30により第2図の直線ドツト展開ア
ルゴリズムのデータ処理が行われる。(3) Logic operation unit 30...small capacity 2-port register file 31, Q register 32, shifter 33,
34, a logic operation circuit 35, and input selectors 36 and 37 for the logic operation circuit 35. As the output, either the calculation result or the register file 31 can be selected by the selector 38. This arithmetic unit 30 performs data processing using the linear dot expansion algorithm shown in FIG.
(4) 画面メモリアダプタ40…画面メモリ2に対
する書込色情報レジスタ41、書込X及びY座
標レジスタ42,43を有し、かつ図形発生装
置1の処理と画面メモリ2への書込動作がパイ
プラインで実行できるようにするためのレジス
タ44を有する。(4) Screen memory adapter 40...has a write color information register 41 and write X and Y coordinate registers 42, 43 for the screen memory 2, and is capable of processing the graphic generator 1 and writing to the screen memory 2. It has a register 44 to enable execution in a pipeline.
から構成される。It consists of
一方制御部は、マイクロプログラムの実行順序
を制御するマイクロプログラムシーケンサ50、
及びシーケンサ50からの番地情報を受けマイク
ロプログラムデータを出力するマイクロプログラ
ムROM51及び実行すべきマイクロプログラム
命令を格納するマイクロプログラムレジスタ52
から構成される。 On the other hand, the control unit includes a microprogram sequencer 50 that controls the execution order of the microprograms;
and a microprogram ROM 51 that receives address information from the sequencer 50 and outputs microprogram data, and a microprogram register 52 that stores microprogram instructions to be executed.
It consists of
図形コマンドはFIFOバツフア11から取り込
まれフアンクシヨンレジスタ60にセツトされマ
ツピングジヤンプROM61によりその図形コマ
ンドを実行するマイクロプログラムの先頭番地が
マイクロプログラムシーケンサ50に与えられて
図形コマンド処理が行われる。 The graphic command is taken in from the FIFO buffer 11 and set in the function register 60, and the mapping jump ROM 61 gives the microprogram sequencer 50 the starting address of the microprogram that executes the graphic command, thereby processing the graphic command.
さてマイクロプログラムシーケンサ50には、
マイクロプログラムレジスタ52からの順序制御
命令92が与えられ、この命令として
(a) マツプROMによるJump(MAPJ)
(b) 無条件Jump(JUMP)
(c) 条件付Jump(CJUMP)
(d) SubroutineCall(CALL)
(e) Retnrn(RTN)
(f) Repeat(RPT)
(g) Continue(CNT)
がある。条件付Jumpの条件として論理演算ユニ
ツト30からの正/負、ゼロ、奇/偶、キヤリ
ー、オーバーフロー、シフトアウト情報90等が
与えられる。また、Repeatの制御のためカウン
タ23から“0”情報91が与えられる。即ちカ
ウンタ23はデータRAM/ROM21のアドレ
スの他にループカウントとして用いられる。そし
てRepeat命令時に、もしカウンタ23が“0”
ならば次のマイクロプログラムに進み、“0”で
なければあらかじめ登録されているループ先頭ア
ドレスへJumpする制御をシーケンサ50で行う。
ループ先頭アドレスの登録はJump命令のときそ
のJump先アドレス93が記憶される。 Now, the microprogram sequencer 50 has
A sequence control instruction 92 from the microprogram register 52 is given, and this instruction is (a) Jump by map ROM (MAPJ) (b) Unconditional Jump (JUMP) (c) Conditional Jump (CJUMP) (d) SubroutineCall ( CALL) (e) Retnrn (RTN) (f) Repeat (RPT) (g) Continue (CNT). Positive/negative, zero, odd/even, carry, overflow, shift-out information 90, etc. from the logic operation unit 30 are given as conditional Jump conditions. Furthermore, "0" information 91 is given from the counter 23 for repeat control. That is, the counter 23 is used as a loop count in addition to the address of the data RAM/ROM 21. If the counter 23 is “0” at the time of the Repeat command,
If so, proceed to the next microprogram, and if it is not "0", control is performed by the sequencer 50 to jump to the pre-registered loop start address.
When registering the loop start address, the Jump destination address 93 is stored when a Jump instruction is issued.
マイクロプログラムの命令には、論理演算ユニ
ツト30に対する指令94、2ポートのレジスタ
フアイル31に対する2つのアドレスA96、ア
ドレスB97及びその他カウンタ23、セレクタ
22、RAM/ROM21、FIFO11,12、画
面メモリレジスタ41〜43等に対する指令97
が含まれる。 The microprogram instructions include a command 94 for the logical operation unit 30, two addresses A96 and B97 for the two-port register file 31, and other counters 23, selectors 22, RAM/ROM 21, FIFOs 11 and 12, screen memory registers 41 to Directive 97 for 43 etc.
is included.
また、レジスタフアイル31のアドレスA96
は、条件フラグ80の内容によりアドレス修飾回
路70により修飾される。この回路70では、フ
ラグ80がオフの場合にはアドレスA96がその
ままレジスタフアイル31のAアドレス98とな
り、フラグ80がオンの場合にはアドレスA96
の値が+1されてAアドレス98に出力する。即
ち通常はフラグ80はリセツトされており、直線
ドツト展開処理の時に判別式Dの符号がフラグ8
0にセツトされアドレスA96が修飾される。 Also, address A96 of register file 31
is modified by the address modification circuit 70 according to the contents of the condition flag 80. In this circuit 70, when the flag 80 is off, the address A96 becomes the A address 98 of the register file 31, and when the flag 80 is on, the address A96 becomes the address A96.
The value of is incremented by 1 and output to A address 98. That is, the flag 80 is normally reset, and the sign of the discriminant D is set to the flag 8 during the linear dot expansion process.
It is set to 0 and address A96 is modified.
さて条件フラグ80及びアドレス修飾回路70
の回路構成は以上の説明により容易に実現できる
ので省略する。第5図にマイクロプログラムシー
ケンサ50の回路構成を示す。順次アドレスを更
新するマイクロプログラムアドレスカウンタ5
7、サブルーチンCali時の戻りアドレス記憶用ス
タツク58、ループ先頭アドレスレジスタ55か
らなり、順序命令92及び条件情報90,91を
受けてコントロール回路54が前述したような動
作を実行する。マイクロプログラムROM51に
対するアドレスとして、セレクタ56を介してア
ドレスカウンタ57、スタツク58、ループ先頭
アドレスレジスタ55、Jumpアドレス93のい
ずれかが選択されて与えられる。 Now, condition flag 80 and address modification circuit 70
Since the circuit configuration can be easily realized through the above explanation, the description thereof will be omitted. FIG. 5 shows the circuit configuration of the microprogram sequencer 50. Microprogram address counter 5 that updates addresses sequentially
7. It consists of a stack 58 for storing a return address during subroutine Cali, and a loop start address register 55, and upon receiving a sequence instruction 92 and condition information 90, 91, a control circuit 54 executes the operations described above. As an address for the microprogram ROM 51, one of the address counter 57, stack 58, loop start address register 55, and jump address 93 is selected and given via the selector 56.
さて以上の構成のマイクロプログラム制御によ
る直線のドツト展開処理を第6図により説明す
る。直線コマンド処理では前処理として
(1) コマンドにより指定された書込カラーを色レ
ジスタ41にセツトする。 Now, the straight line dot development process under microprogram control with the above configuration will be explained with reference to FIG. In the linear command processing, as preprocessing, (1) the writing color specified by the command is set in the color register 41;
(2) 直線の点A及びBの座標から、第7図に
示すようにレジスタフアイル31に判別式D、
判別式D≧0のときの加算値D1,D<0のと
きの加算値D2、同様にx、δx1,δx2,y,
δy1,δx2をセツトする。そして最初の点A
をアダプタのx,yレジスタ42,43を介し
て画面メモリ2に書き込み、1点目の判別式
D1(0゜〜45゜の方向の場合は、ΔY−1/2X)を計
算し、この符号を条件フラグ80にセツトす
る。即ち判別式D1が正の場合は条件フラグは
リセツトされ、負の場合は条件フラグはセツト
される。(2) From the coordinates of points A and B on the straight line, the discriminant D,
Addition value D 1 when discriminant D≧0, addition value D 2 when D<0, similarly x, δx1, δx2, y,
Set δy1 and δx2. and the first point A
is written to the screen memory 2 via the x, y registers 42 and 43 of the adapter, and the discriminant for the first point is
D 1 (ΔY-1/2X in the case of a direction of 0° to 45°) is calculated, and this sign is set in the condition flag 80. That is, if the discriminant D1 is positive, the condition flag is reset, and if it is negative, the condition flag is set.
(3) 直線の長さ(0゜〜45゜の方向の場合には
ΔX=XB−XA)をループカウンタ23にセツ
トする。(3) Set the length of the straight line (ΔX=X B −X A in the case of a direction of 0° to 45°) in the loop counter 23.
(4) 直線ドツト展開処理のループ先頭アドレスを
登録するため(5)へのJumpをする。(4) Jump to (5) to register the loop start address for linear dot expansion processing.
が行われ、直像ドツト展開処理ループとしては、
(5) 第iドツトのx座標値の更新を行う。マイク
ロプログラム上は、xi-1とδx1の加算を行う
が、D≧0の場合は条件フラグがセツトされな
いためxi←xi-1+δx1が演算され、D<0の場
合は条件フラグがセツトされているため、δx
1のレジスタアドレスが+1されてδx2を指
し、xi←xi-1+δx2が演算される。そしてその
結果がx座標レジスタ42にセツトされる。(5) The x-coordinate value of the i-th dot is updated as a direct image dot expansion processing loop. In the microprogram, x i-1 and δx1 are added, but if D≧0, the condition flag is not set, so x i ←x i-1 + δx1 is calculated, and if D<0, the condition flag is not set. Since it is set, δx
The register address of 1 is incremented by 1 to point to δx2, and x i ←x i-1 + δx2 is calculated. The result is then set in the x-coordinate register 42.
(6) 第iドツトのy座標値の更新を行う。処理は
上記(4)と同様にD≧0ならばyi←yi-1+δy1、D
<0ならばyi←yi-1+δy2が演算される。(6) Update the y-coordinate value of the i-th dot. The process is similar to (4) above, if D≧0, y i ←y i-1 + δy1, D
If <0, y i ←y i-1 + δy2 is calculated.
(7) ここでは、次の処理が同時に行われる。(7) Here, the following processes are performed simultaneously.
ループカウンタのカウントダウン及びその
結果によるRepeat処理。これにより(4)〜(6)
の処理を指定の長さだけループする。 Loop counter countdown and repeat processing based on the result. This allows (4) to (6)
Loops the process for the specified length.
次の第i+1ドツトの判別式の計算を行
う。ここでも元のDi≧0ならばDi+1←Di+
D1,Di<0ならばDi+1←Di+D2が演算され
る。そしてDi+1の符号が条件フラグ80にセ
ツトされる。 The next discriminant for the i+1th dot is calculated. Here too, if the original D i ≧0, then D i+1 ←D i +
If D 1 , D i <0, D i+1 ←D i +D 2 is calculated. The sign of D i+1 is then set in the condition flag 80.
前記(4),(5)でセツトされたx,y座標レジ
スタ42,43の値をアドレスとして画面メ
モリ2に書込指令を出す。 A write command is issued to the screen memory 2 using the values of the x and y coordinate registers 42 and 43 set in (4) and (5) as addresses.
が行われる。以上のように本実施例によれば、従
来のマイクロプログラム制御では6ステツプかか
つていた直線ドツト展開処理ループが3ステツプ
に短縮され、直線の表示速度の高速化が達成でき
る。will be held. As described above, according to this embodiment, the straight line dot expansion processing loop, which used to take 6 steps under conventional microprogram control, is shortened to 3 steps, and the display speed of straight lines can be increased.
なお本実施例ではアドレス修飾を+1するとい
う方法をとつたが、別な方式、例えばアドレスの
最下位を反転する等といつたことでもよい。また
ループ先頭アドレスの登録方法やループカウンタ
の持ち方についても本実施例にとらわれない。 In this embodiment, a method of adding +1 to the address modification was used, but another method, such as inverting the lowest order of the address, may be used. Furthermore, the method of registering the loop start address and the method of holding the loop counter are not limited to this embodiment.
以上詳細に説明したように本発明によれば、簡
単な回路を付加することにより高速の直線を発生
させることができ、高速で任意図形の表示をする
ことができる。 As described above in detail, according to the present invention, by adding a simple circuit, a straight line can be generated at high speed, and an arbitrary figure can be displayed at high speed.
第1図はラスタスキヤン形CRTを用いたグラ
フイツクデイスプレイのシステム構成図、第2図
A〜Cは直線のドツト展開アルゴリズムを説明す
る図、第3図はそれを従来のマイクロプログラム
制御の図形発生装置で実行したフローチヤート
図、第4図は本発明になる図形発生装置のブロツ
ク図、第5図は前図の図形発生装置のマイクロプ
ログラムシーケンサの内部回路図、第6図は本発
明になる図形発生装置による直線ドツト展開処理
のフローチヤート図、第7図はレジスタフアイル
への変数割当ての一例を示すテーブルである。
1……図形発生装置、2……画面メモリ、3…
…ラスタスキヤン形CRT、4……グラフイツク
デイスプレイ、5……計算機、23……ループカ
ウンタ、70……アドレス修飾回路、80……条
件フラグ。
Figure 1 is a system configuration diagram of a graphic display using a raster scan type CRT, Figures 2 A to C are diagrams explaining the straight line dot expansion algorithm, and Figure 3 shows how it is used in conventional microprogram-controlled graphic generation. A flowchart diagram executed by the device, FIG. 4 is a block diagram of the figure generator according to the present invention, FIG. 5 is an internal circuit diagram of the microprogram sequencer of the figure generator shown in the previous figure, and FIG. 6 is a diagram according to the present invention. FIG. 7, which is a flowchart of the linear dot expansion process performed by the graphic generator, is a table showing an example of variable assignment to the register file. 1... Graphic generator, 2... Screen memory, 3...
... Raster scan type CRT, 4 ... Graphic display, 5 ... Computer, 23 ... Loop counter, 70 ... Address modification circuit, 80 ... Condition flag.
Claims (1)
ンドを解釈して図面メモリに書き込んで図形を発
生するマイクロプログラム制御の図形発生装置に
おいて、 演算器のデータレジスタを指定するアドレスを
修飾するアドレス修飾フラグを設け、前記演算器
による演算結果の正、負のステータスを前記アド
レス修飾フラグに設定するか否かを制御すること
を特徴とするマイクロプログラム制御の図形発生
装置。[Scope of Claims] 1. In a microprogram-controlled figure generator that generates figures by interpreting figure commands given from a data source such as a computer and writing them into a drawing memory, the address specifying the data register of an arithmetic unit is modified. A microprogram-controlled graphic generation device, characterized in that an address modification flag is provided to control whether or not a positive or negative status of a calculation result by the arithmetic unit is set in the address modification flag.
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP7601180A JPS572085A (en) | 1980-06-04 | 1980-06-04 | Microprogrammable graphic generator |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
JP7601180A JPS572085A (en) | 1980-06-04 | 1980-06-04 | Microprogrammable graphic generator |
Publications (2)
Publication Number | Publication Date |
---|---|
JPS572085A JPS572085A (en) | 1982-01-07 |
JPS642953B2 true JPS642953B2 (en) | 1989-01-19 |
Family
ID=13592869
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
JP7601180A Granted JPS572085A (en) | 1980-06-04 | 1980-06-04 | Microprogrammable graphic generator |
Country Status (1)
Country | Link |
---|---|
JP (1) | JPS572085A (en) |
Families Citing this family (5)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
JPS5945548A (en) * | 1982-09-07 | 1984-03-14 | Nec Corp | Method and device for generating address of bit map memory |
JPS6019252A (en) * | 1983-07-13 | 1985-01-31 | Toshiba Corp | Memory address control circuit |
JPS6097442A (en) * | 1983-10-31 | 1985-05-31 | Fujitsu Ltd | Write control system of image memory |
JPS60216383A (en) * | 1984-04-11 | 1985-10-29 | 株式会社 アスキ− | Display controller |
JPS6370386A (en) * | 1986-09-11 | 1988-03-30 | Nec Corp | Graphics display and control system |
-
1980
- 1980-06-04 JP JP7601180A patent/JPS572085A/en active Granted
Also Published As
Publication number | Publication date |
---|---|
JPS572085A (en) | 1982-01-07 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
JPH0126072B2 (en) | ||
EP0278526B1 (en) | Graphics diplay controller having clipping function | |
US4941111A (en) | Video picking and clipping method and apparatus | |
US5003497A (en) | Method for three-dimensional clip checking for computer graphics | |
JPS6240580A (en) | Graphic drawing method | |
US4747042A (en) | Display control system | |
JPH04246790A (en) | Vector/conic section/area file primitive generator | |
US5020002A (en) | Method and apparatus for decomposing a quadrilateral figure for display and manipulation by a computer system | |
US5128872A (en) | Method and apparatus for determining line positions for display and manipulation by a computer system | |
JPS642953B2 (en) | ||
JPH0640259B2 (en) | Data processing device | |
JPH0567216A (en) | Graphic painting-out device | |
JPS6155677B2 (en) | ||
JP2787487B2 (en) | Circuit for determining the position of a line segment displayed and operated on a computer system | |
JPH05210744A (en) | Device and method for plotting computer graphics | |
JPH0315193B2 (en) | ||
KR930005777B1 (en) | Image processing apparatus | |
JPH0528276A (en) | Graphic plotting system in multi-processor system | |
JP2616443B2 (en) | Graphic drawing device | |
JPS61130991A (en) | Graphic processing method and apparatus | |
JP2000242802A (en) | Graphic processor | |
JPH03202965A (en) | Graphic data processor | |
JPH02271424A (en) | Full graphic picture display system | |
JPS6169094A (en) | Graphic processing method and apparatus | |
JPH04247587A (en) | Graphic display device |