This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Abdulov Timur 2015 Text processor Free Soft Текстовый процессор | |
;========================================================================================================== | |
ORG 100h; | |
Call INIT ; Инициализация установка в ES адреса начала видеопамяти | |
.CIK: call CLEAR ; Очистка окна возможно и его вырисовка в будущем | |
call SCRE ; Отображение редактируемого текста в окошке | |
Call CUSROS ; Вывод курсора | |
Call KLAV ; ОБработка нажатых кнопоук | |
Jmp .CIK ; Повтор предыдущих действий операции в цикле | |
;========================================================================================================== |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unit UCCATR; | |
{Абдулов Тимур Рифович 2015 | |
Кроссплатформенный компилятор широкого спектра применения | |
Abdulov Timur Rifovich 2015 | |
Cross-platform compiler wide range of applications | |
Emails | |
[email protected] | |
[email protected] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;{ AbdUlov Timur Rifovich 2015 programming language ATR ------------------------ | |
; https://sites.google.com/site/timpascallib/atr | |
; Еще не доделан чуток осталося дописать | |
; in the development not completed | |
;} | |
org 100h ;{ Стартовый адрес програмы ------------------------------------------- | |
;call InitMem; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ATR.CS : . | |
// AbdUlov Timur Rifovich 2015 programming language ATR | |
// https://sites.google.com/site/timpascallib/atr | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Threading.Tasks; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// AbdUlov Timur Rifovich 2015 programming language ATR | |
// https://sites.google.com/site/timpascallib/atr | |
program ATR; | |
uses | |
sysUtils; | |
const | |
Znak='+-*/=(){}|&:<>';// Знаки обрабатываемые знаки | |
Ti_Ope=10; // Commands Function Оператор | |
Ti_Cif=20; // Numbers Цифра | |
Ti_Zna=30; // Знак ОДинарный например = + - / , |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ATR.cpp : Defines the entry point for the console application. | |
// AbdUlov Timur Rifovich 2015 programming language ATR | |
// https://sites.google.com/site/timpascallib/atr | |
#include "stdafx.h" | |
#include <iostream> | |
#include <string> | |
using namespace std; | |
string LN; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To change this license header, choose License Headers in Project Properties. | |
* To change this template file, choose Tools | Templates | |
* and open the template in the editor. | |
*/ | |
package atr; | |
/* author Abdulov Timur Rifovich 2015 | |
// Site https://sites.google.com/site/timpascallib/atr */ | |
public class ATR { | |
NewerOlder