Share to: share facebook share twitter share wa share telegram print page

RT-11

RT-11
DeveloperDigital Equipment Corporation and Mentec Inc.
Written inMACRO-11
Working stateDiscontinued
Source modelClosed source
Initial release1973; 51 years ago (1973)[citation needed]
Latest release5.7 / October 1998; 25 years ago (1998-10)[1]
Marketing targetLaboratory, scientific, industrial equipment
Available inEnglish
PlatformsPDP-11 family and clones
Kernel typeMonolithic
Default
user interface
Keyboard Monitor (KMON) Command-line interface
LicenseProprietary

RT-11 (Real-time 11) is a discontinued small, low-end,[2] single-user real-time operating system for the full line of Digital Equipment Corporation PDP-11 16-bit computers. RT-11 was first implemented in 1970. It was widely used for real-time computing systems, process control, and data acquisition across all PDP-11s. It was also used for low-cost general-use computing.[2]

Features

Source code

RT-11 was written in assembly language. Heavy use of the conditional assembly and macro programming features of the MACRO-11 assembler allowed a significant degree of configurability and allowed programmers to specify high-level instructions otherwise unprovided for in machine code. RT-11 distributions included the source code of the operating system and its device drivers with all the comments removed and a program named "SYSGEN" which would build the operating system and drivers according to a user-specified configuration. Developer's documentation included a kernel listing that included comments.

Device drivers

In RT-11, device drivers[3][4] were loadable, except that prior to V4.0 the device driver for the system device (boot device) was built into the kernel at configuration time. Because RT-11 was commonly used for device control and data acquisition, it was common for developers to write or enhance device drivers. DEC encouraged such driver development by making their hardware subsystems (from bus structure to code) open, documenting the internals of the operating system, encouraging third-party hardware and software vendors, and by fostering the development of the Digital Equipment Computer Users Society.

Multitasking

RT-11 systems did not support preemptive multitasking, but most versions could run multiple simultaneous applications. All variants of the monitors provided a background job. The FB, XM, and ZM monitors also provided a foreground job, and six system jobs if selected via the SYSGEN system generation program. These tasks had fixed priorities, with the background job lowest and the foreground job highest. It was possible to switch between jobs from the system console user interface, and SYSGEN could generate a monitor that provided a single background job (the SB, XB and ZB variants).[2] The terms foreground and background are counterintuitive; the background job was typically the user's command-line interpreter; a foreground job might be doing something like non-interactive data collection.

Human interface

The end of the HELP command output from RT-11SJ displayed on a VT100.

Users generally operated RT-11 via a printing terminal or a video terminal, originally via a strap-selectable current-loop (for conventional teletypes) or via an RS-232 (later RS-422 as well) interface on one of the CPU cards; DEC also supported the VT11 and VS60 graphics display devices (vector graphics terminals with a graphic character generator for displaying text, and a light pen for graphical input). A third-party favorite was the Tektronix 4010 family.

The Keyboard Monitor (KMON) interpreted commands issued by the user and would invoke various utilities with Command String Interpreter (CSI) forms of the commands. RT-11 command language had many features (such as commands and device names) that can be found later in the DOS line of operating systems which heavily borrowed from RT-11. The CSI form expected input and output filenames and options ('switches' on RT-11) in a precise order and syntax. The command-line switches were separated by a slash (/) rather than the dash (-) used in Unix-like operating systems. All commands had a full form and a short one to which they could be contracted. For example, the RENAME command could be contracted to REN.

Batch files and the batch processor could be used to issue a series of commands with some rudimentary control flow. Batch files had the extension .BAT.

In later releases of RT-11, it was possible to invoke a series of commands using a .COM command file, but they would be executed in sequence with no flow control. Even later, it was possible to execute a series of commands with great control through use of the Indirect Command File Processor (IND), which took .CMD control files as input.

Files with the extension .SAV were a sort of executable. They were known as "save files" because the RT-11 SAVE command could be used to save the contents of memory to a disk file which could be loaded and executed at a later time, allowing any session to be saved.

The SAVE command, along with GET, START, REENTER, EXAMINE and DEPOSIT were basic commands implemented in the KMON. Some commands and utilities were later borrowed in the DOS line of operating systems. These commands include DIR, COPY, RENAME, ASSIGN, CLS, DELETE, TYPE, HELP and others. The FORMAT command was used for physical disk formatting, although it was not capable of creating file system, for which purpose the INIT command was used (analogue of DOS command FORMAT /Q). Most commands supported using wildcards in file names.

Physical device names were specified in the form 'dd{n}:' where 'dd' was a two-character alphabetic device name and the optional 'n' was the unit number (0–7). When the unit number was omitted, unit 0 was assumed. For example, TT: referred to the console terminal, LP: (or LP0:) referred to the parallel line printer, and DX0:, DY1:, DL4: referred to disk volumes (RX01 unit 0, RX02 unit 1, RL01 or RL02 unit 4, respectively). Logical device names consisted of 1–3 alphanumeric characters and were used in the place of a physical device name. This was accomplished using the ASSIGN command. For example, one might issue ASSIGN DL0 ABC which would cause all future references to 'ABC:' to map to 'DL0:'. Reserved logical name DK: referred to the current default device. If a device was not included in a file specification, DK: was assumed. Reserved logical name SY: referred to the system device (the device from which the system had been booted).

Later versions of RT-11 allowed specification of up to 64 units (0–77 octal) for certain devices, but the device name was still limited to three alphanumeric characters. This feature was enabled through a SYSGEN selection, and only applied to the DU and LD device handlers. In these two cases, the device name form became 'dnn:' where 'd' was 'D' for the DU device and 'L' for the LD device, and 'nn' was 00–77(octal).

Software

RT-11 was distributed with utilities for performing many actions. The utilities DIR, DUP, PIP and FORMAT were for managing disk volumes. TECO, EDIT, and the visual editors KED (for the DEC VT100) and K52 (for the DEC VT52) were used to create and edit source and data files. MACRO, LINK, and LIBR were for building executables. ODT, VDT and the SD device were used to debug programs. DEC's version of Runoff[5] was for producing documents. Finally, VTCOM was used to connect with and use (or transfer files to and from) another computer system over the phone via a modem.

The system was complete enough to handle many modern personal computing tasks. Productivity software such as LEX-11, a word processing package, and a spreadsheet from Saturn Software, used under other PDP-11 operating systems, also ran on RT-11.[6] Large amounts of free, user-contributed software for RT-11 were available from the Digital Equipment Computer Users Society (DECUS) including an implementation of C. Although the tools to develop and debug assembly-language programs were provided, other languages including C, Fortran, Pascal,[7] and several versions of BASIC were available from DEC as "layered products" at extra cost. Versions of these and other programming languages were also available from other, third-party, sources. It is even possible to network RT-11 machines using DECNET, the Internet and protocols developed by other, third-party sources.

Distributions and minimal system configuration

The RT-11 operating system could be booted from, and perform useful work on, a machine consisting of two 8-inch 250KB floppy disks and 56KB of memory, and could support 8 terminals. Other boot options include the RK05 2.5MB removable hard disk platter, or magnetic tape. Distributions were available pre-installed or on punched tape, magnetic tape, cartridge tape, or floppy disk. A minimal but complete system supporting a single real-time user could run on a single floppy disk and in 8K 16-bit words (16KB) of RAM, including user programs. This was facilitated by support for swapping and overlaying. To realize operation on such small memory system, the keyboard command user interface would be swapped out during the execution of a user's program and then swapped into memory upon program termination. The system supported a real-time clock, printing terminal, VT11 vector graphic unit, 16 channel 100 kHz A/D converter with 2 channel D/A, 9600 baud serial port, 16 bit bidirectional boards, etc.

File system

RT-11 implemented a simple and fast file system employing six-character filenames with three-character extensions (6.3) encoded in RADIX-50, which packed those nine characters into only three 16-bit words (six bytes). This resulted in allowable filename characters being 'A'-'Z', 'a'-'z' forced to upper case, '0'-'9', '$', '%', '*'. Filenames could be prefixed by a device name to specify a device different to the default DK: device, also encoded in RADIX-50.

All files were contiguous, meaning that each file occupied consecutive blocks (the minimally addressable unit of disk storage, 512 bytes) on the disk. This meant that an entire file could be read (or written) very quickly. A side effect of this file system structure was that, as files were created and deleted on a volume over time, the unused disk blocks would likely not remain contiguous, which could become the limiting factor in creating large files; the remedy was to periodically “squeeze” (or "squish") a disk to consolidate the unused portions.[8][9]

Each volume has only one directory which was preallocated at the beginning of the volume. The directory consists of an array of entries, one per file or unallocated space. Each directory entry is 8 (or more) 16-bit words, though a sysgen option allowed extra application-specific storage.[10]

Compatibility with other DEC operating systems

Many RT-11 programs (those that did not need specialized peripherals or direct access to the hardware) could be directly executed using the RT=11 RTS (Run-time system) of the RSTS/E timesharing system or under RTEM (RT Emulator) on various releases of both RSX-11 and VMS.

The implementation of DCL for RT-11 increased its compatibility with the other DEC operating systems. Although each operating system had commands and options which were unique to that operating system, there were a number of commands and command options which were common.

Other PDP-11 operating systems

DEC also sold RSX-11, a multiuser, multitasking operating system with realtime features, and RSTS/E (originally named RSTS-11) a multiuser time-sharing system, but RT-11 remained the operating system of choice for data acquisition systems where real time response was required. The Unix operating system also became popular, but lacked the real-time features and extremely small size of RT-11.

Hardware

RT-11 ran on all members of the DEC PDP-11 family, both Q-Bus- and Unibus-based, from the PDP-11/05 (its first target, in 1970 (note that the PDP-11/05 was released 1972, so this probably was a PDP-11/20)), to the final PDP-11 implementations (PDP-11/93 and /94). In addition, it ran on the Professional Series and the PDT-11 "Programmed Data Terminal" systems, also from DEC. Since the PDP-11 architecture was implemented in replacement products by other companies (E.g., the M100 and family from Mentec), or as reverse-engineered clones in other countries (E.g., the DVK from the Soviet Union), RT-11 runs on these machines as well.

Peripherals

Adding driver support for peripherals such as a CalComp plotter,[11] typically involved copying files, and did not require a SYSGEN.[2]

Compatible operating systems

Fuzzball

Fuzzball, routing software for Internet Protocols, was capable of running RT-11 programs.[12]

SHAREplus

HAMMONDsoftware distributed a number of RT-11 compatible operating systems including STAReleven, an early multi-computer system and SHAREplus, a multi-process/multi-user implementation of RT-11 which borrowed some architectural concepts from the VAX/VMS operating system. RT-11 device drivers were required for operation. Transparent device access to other PDP-11s and VAX/VMS were supported with a network option. Limited RSX-11 application compatibility was also available. SHAREplus had its strongest user base in Europe.

TSX-11

TSX-11,[13] developed by S&H Computing, was a multi-user, multi-processing implementation of RT-11. The only thing it didn't do was handle the boot process, so any TSX-Plus machine was required to boot RT-11 first before running TSX-Plus as a user program. Once TSX-Plus was running, it would take over complete control of the machine from RT-11. It provided true memory protection for users from other users, provided user accounts and maintained account separation on disk volumes and implemented a superset of the RT-11 EMT programmed requests.

S&H wrote the original TSX because "Spending $25K on a computer that could only support one user bugged [founder Harry Sanders]"; the outcome was the initial four-user TSX in 1976.[14] TSX-Plus (released in 1980) was the successor to TSX, released in 1976.[14] The system was popular in the 1980s. RT-11 programs generally ran, unmodified, under TSX-Plus and, in fact, most of the RT-11 utilities were used as-is under TSX-Plus. Device drivers generally required only slight modifications.

Depending on which PDP-11 model and the amount of memory, the system could support a minimum of 12 users[14] (14-18 users on a 2Mb 11/73, depending on workload).[15] The last version of TSX-Plus had TCP/IP support.

Versions

Variants

Users could choose from variants with differing levels of support for multitasking, memory size, and separate I & D (Instruction and Data) address space:

Unmapped memory

  • RT-11SJ (Single Job) allowed only one task. This was the initial distribution.
  • RT-11BL (Base-line) a stripped down version of SJ that has minimal memory residency and lacks optional features.[16]
  • RT-11FB (Foreground/Background) supported two tasks: a high-priority, non-interactive "Foreground" job, and a low-priority, interactive "Background" job.[2]

Mapped memory

  • RT-11XB single job, does not support I & D separation.[17]
  • RT-11XM (eXtended Memory), a superset of FB,[2] provided support for memory beyond 64kb, but required a minicomputer with memory management hardware; distributed from approx. 1975-on. Up to 8 concurrent jobs.[17]
  • RT-11ZB single job, supports I & D separation.[17]
  • RT-11ZM provided support for systems with Separate Instruction and Data space (such as on the Unibus-based 11/44, 45, 55, 70, 84, and 94 and the Q-Bus-based 11/53, 73, 83, and 93.) Up to 8 concurrent jobs.[17]

Specialized versions

Several specialized PDP-11 systems were sold based on RT-11:

  • LAB-11 provided an LPS-11 analog peripheral for the collection of laboratory data
  • PEAK-11 provided further customization for use with gas chromatographs (analyzing the peaks produced by the GC); data collection ran in RT-11's foreground process while the user's data analysis programs ran in the background.
  • GT4x systems added a VT11 vector graphics peripheral. Several very popular demo programs were provided with these systems including Lunar Lander and a version of Spacewar!.
  • GT62 systems added a VS60 vector graphics peripheral (VT11-compatible) in a credenza cabinet.
  • GAMMA-11 was a packaged RT-11 and PDP 11/34 system that was one of the first fully integrated Nuclear Medicine systems. It included fast analog/digital converters, 16 bit colour graphical displays, and an extensive software library for development of applications for the purpose of data collection, analysis and display from a nuclear medicine gamma camera.

Clones in the USSR

Several clones of RT-11 were made in the USSR:

See also

References

  1. ^ "RT-11 - Release history". www.oshistory.net. Archived from the original on 28 September 2007. Retrieved 18 March 2022.
  2. ^ a b c d e f Campbell, Milton (December 1982). "The RT-11 Perspective". Hardcopy.
  3. ^ "DEC RP02/RP03 device drivers included". Computerworld. July 20, 1981. p. 58.
  4. ^ "3Com software drivers". Computerworld. October 26, 1981. p. 51.
  5. ^ "Runoff polishes text on RSTS/E, RT-11". Computerworld. September 25, 1978. p. 35.
  6. ^ "LEX-11 on all DEC operating systems". Computerworld. April 20, 1981. p. 59.
  7. ^ "PASCAL on RT-11". Computerworld. March 10, 1980. p. 102.
  8. ^ "RT-11 System Message Manual" (PDF). BitSavers. Compress the volume by using the monitor SQUEEZE command
  9. ^ "RT-11 System Users Guide 1977" (PDF). The SQUEEZE command consolidates in a single area all unused ...
  10. ^ "Digital's RT-11 File System". 20 October 2013. Retrieved January 1, 2015.
  11. ^ Google Scholar W. L. Palya; B. Brown (1981). "Graphics software and hardware for RT-11 systems". Behavior Research Methods & Instrumentation. 13 (2): 255–261. doi:10.3758/BF03207944.
  12. ^ Mills, D. L. (1988). "The Fuzzball" (PDF). ACM SIGCOMM Computer Communication Review. 18 (4): 115–122. doi:10.1145/52325.52337. Retrieved 2009-05-06.
  13. ^ Milton Campbell (January 1985). "The RT-11 Perspective". Hardcopy (magazine). p. 125.
  14. ^ a b c "S&H TSX-Plus on 11/23, 11/34". Computerworld. December 1, 1980. p. 67. efficient, general-purpose timesharing for up to 20 users on 11/23 and 11/34 based ...
  15. ^ "TSX-Plus: Time Share RT-11". Hardcopy (magazine). October 1982. p. 9.
  16. ^ RT-11 Installation and System Generation Guide. Maynard, MA: Digital Equipment Corporation. March 1980. p. 1-6.
  17. ^ a b c d RT-11 Installation Guide (PDF). Maynard, Massachusetts: Digital Equipment Corporation. August 1991. pp. 1–2, 1–3.

Read other articles:

Untuk kegunaan lain, lihat Rajasthani (disambiguasi). Bahasa Rajasthani राजस्थानीRājasthānī Dituturkan diIndia, PakistanWilayahRajasthan dan wilayah negara bagian India sekitarnya; juga dipakai di beberapa wilayah provinsi Sindh dan Punjab di PakistanPenutur20 juta (2001)[1][2]Rumpun bahasaIndo-Eropa Indo-IranIndo-AryaBarat[3]Rajasthani Bentuk awalMaru-Gujar Rajasthani Kode bahasaISO 639-2rajISO 639-3raj – kode inklusifKode individual:b...

La Tabla de los pueblos La Tabla de los pueblos (también conocida como Tabla de los pueblos estiríaca) es una pintura al óleo de comienzos del siglo XVIII, de autor anónimo. Esta obra, procedente de Estiria, es una representación pictórica de los pueblos europeos, donde ordenadas tabuláricamente, encontramos una descripción de sus distintas características. Hoy en día puede verse como fuente de estereotipos étnicos e históricos.[1]​ En la parte superior de la tabla (104...

اضغط هنا للاطلاع على كيفية قراءة التصنيف سيف الأمازون المرتبة التصنيفية جنس  التصنيف العلمي النطاق: حقيقيات النوى المملكة: نباتات العويلم: النباتات الجنينية غير مصنف: حقيقيات الأوراق غير مصنف: البذريات غير مصنف: كاسيات البذور غير مصنف: أحاديات الفلقة غير مصنف: الزنبقاواي

Carson Davidson (2013) Carson Davidson (* 24. Juni 1924 in Washington, D.C.; † 29. September 2016)[1][2] war ein US-amerikanischer Filmregisseur, Filmproduzent und Drehbuchautor. Inhaltsverzeichnis 1 Karriere 2 Filmografie (Auswahl) 3 Auszeichnungen und Nominierungen 4 Weblinks 5 Einzelnachweise Karriere Davidsons Filmkarriere begann 1955 als Filmproduzent bei dem Kurzfilm 3rd Ave. El, bei dem er zudem auch sein Regiedebüt gab. Für dieses Werk erhielt er bei der anschließ...

Cet article est une ébauche concernant une unité ou formation militaire française. Vous pouvez partager vos connaissances en l’améliorant (comment ?) selon les recommandations des projets correspondants. 14e régiment de tirailleurs sénégalais Insigne régimentaire du 14e régiment de tirailleurs sénégalais. Création 1er avril 1919 Dissolution 15 avril 1946 Pays France Branche Armée de Terre Type Régiment de Tirailleurs Sénégalais Rôle Infanterie Garnison Mont-de-Mar...

PausPaulus IVAwal masa kepausan23 Mei 1555Akhir masa kepausan18 Agustus 1559PendahuluMarselus IIPenerusPius IVInformasi pribadiNama lahirGiovanni Pietro CarafaLahir28 Juni 1476Capriglia Irpina, ItaliaMeninggal18 Agustus 1559Roma, Italia Paus Paulus IV (28 Juni 1476-18 Agustus 1559) adalah Paus yang menjabat sejak 23 Mei 1555 sampai 18 Agustus 1559. Nama aslinya adalah Giovanni Pietro Carafa. Sebelum menjabat sebagai Paus, Paus Paulus IV merupakan salah satu pendiri Oratori tentang Cinta Ilahi...

Частина інформації в цій статті застаріла. Ви можете допомогти, оновивши її. Можливо, сторінка обговорення містить зауваження щодо потрібних змін. Microsoft Edge Тип ВеббраузерРозробник MicrosoftПерший випуск 29 квітня 2015; 8 років тому (2015-04-29)Стабільний випуск PC102.0.1245.33 3&#...

フランスにおける典型的なオードブル 食事 習慣食 朝食 ブランチ イレブンジズ 昼食 アフタヌーン・ティー 夕食 夜食 要素 アミューズブーシュ オードブル チーズ カクテル デザート 飲料 アントレ アントルメ(英語版) 果実 主菜 ナッツ サラダ 副食 関連項目 宴会 食べ放題 料理 摂食 テーブルマナー 食品 各国の料理(英語版) 料理の概要(英語版) 間食 表話編歴 ...

  Globigerinina Rango temporal: Jurásico - Reciente Globigerina bulloidesTaxonomíaReino: ProtistaFilo: RhizariaClase: ForaminiferaOrden: GlobigerinidaSuborden: GlobigerininaDelage & Hérouard, 1896Superfamilias Globigerinoidea Globorotalioidea Globotruncanoidea Hantkeninoidea Heterohelicoidea Planomalinoidea Rotaliporoidea [editar datos en Wikidata] Artículo principal: Globigerinida Globigerinina es el único suborden de foraminífero planctónico del orden Globiger...

المرض الالتهابي متعدد الأجهزة وليدي البدء معلومات عامة الاختصاص طب الجهاز العصبي،  وطب الجلد،  وطب الروماتزم  من أنواع متلازمة دورية مرتبطة بكرايوبايرين،  ومرض مناعي ذاتي،  واضطراب جيني،  ومرض وراثي سائد  [لغات أخرى]‏  تعديل مصدري - تعديل   المت...

Phrase from U.S. Declaration of Independence Part of a series onHumanismLeonardo da Vinci's Vitruvian Man (c. 1490) History Renaissance humanism in Northern Europe in France Humanist Manifesto Forms Buddhist Christian Existential Integral Jewish Marxist Neo- Pan- Personism Rationalist Religious Secular Super- Theistic Trans- Transcendental Universal Organizations Humanist International Humanists International American Humanist Association Humanists UK Humanistischer Verband Deutschlands...

Agensi Pekerjaan dan Pemulihan Perserikatan Bangsa-Bangsa untuk Pengungsi Palestina di Timur Dekat United Nations Relief and Works Agency for Palestine Refugees in the Near EastLogo UNRWASingkatanUNRWATanggal pendirian9 desember 1949.TujuanHumanitarianWilayah layanan Timur DekatKomisioner JenderalPierre KrähenbühlOrganisasi indukPerserikatan Bangsa-BangsaAnggaran US$1.23 billion (2010–2011)[1]Situs webwww.unrwa.org Agensi Pekerjaan dan Pemulihan Perserikatan Bangsa-Bangsa untuk Pe...

1996 Canadian filmCosmosFilm posterDirected byJennifer AlleynManon BriandMarie-Julie DallaireArto ParagamianAndré TurpinDenis VilleneuveProduced byRoger FrappierProductioncompanyMax Films ProductionsRelease date 15 November 1996 (1996-11-15) Running time100 minutesCountryCanada Cosmos is a Canadian drama film, released in 1996.[1] Written and directed by Jennifer Alleyn, Manon Briand, Marie-Julie Dallaire, Arto Paragamian, André Turpin and Denis Villeneuve, the film i...

ピンカス・スタインバーグ ピンカス・スタインバーグ (2011年)基本情報生誕 (1945-12-13) 1945年12月13日出身地 イギリス委任統治領パレスチナ、テルアヴィヴジャンル クラシック音楽職業 指揮者、ヴァイオリニスト公式サイト Pinchas Steinberg Official website ピンカス・スタインバーグ(Pinchas Steinberg, 1945年12月13日 - )は、イスラエルの指揮者、ヴァイオリニスト。 略歴 テル...

Kylie TennantTennant in c.1945BornKathleen Kylie Tennant(1912-03-12)12 March 1912Manly, New South Wales, AustraliaDied28 February 1988(1988-02-28) (aged 75)Sydney, New South Wales, AustraliaYears active1931–1988Notable worksThe Battlers, All the Proud TribesmenNotable awardsALS Gold Medal 1942, Children's Book of the Year Award: Older Readers 1960SpouseL. C. Rodd (m. 1933)Children2 Kathleen Kylie Tennant AO (/ˈkaɪli/;[1] 12 March 1912 – 28 February 1988) was an Austral...

Prussian regiment of tall soldiers The Potsdam Giants at the Battle of Hohenfriedeberg, as depicted by Carl Röchling The Potsdam Giants was the name given to Prussian infantry regiment No 6. The regiment was composed of taller-than-average soldiers, and was founded in 1675. It was eventually dissolved in 1806, after the Prussians were defeated by Napoleon. Throughout the reign of the Prussian king Friedrich Wilhelm I of Prussia (1688–1740), the unit was known as the Potsdamer Riesengarde (...

Public square in Tehran, Iran Demonstration in support of Iranian involvement in the Syrian Civil War, 2014 Imam Hossein Square, or Meydan-e-Emam-Hoseyn, is a square in eastern central Tehran, Iran. The architecture was designed by Karl Schlamminger . r. Transportation Enqelab Street Damavand Street 17 Shahrivar Street Mazandaran Street Tehran BRT Line Imam Hossein Square Station Imam Hossein Metro Station Former The Tehran trolleybus system terminated at Meydan-e-Emam-Hoseyn (Imam Hossein Sq...

Village in Southern Transdanubia, HungaryRinyaújnép Vunep (in Croatian)Village Coat of armsRinyaújnépLocation of RinyaújnépCoordinates: 46°04′55″N 17°21′18″E / 46.08182°N 17.35508°E / 46.08182; 17.35508Country HungaryRegionSouthern TransdanubiaCountySomogyDistrictBarcsRC DioceseKaposvárArea • Total8.28 km2 (3.20 sq mi)Population (2017) • Total55[1]Demonym(s)újnépi, rinyaújnépiTime zoneUTC+1...

この記事は検証可能な参考文献や出典が全く示されていないか、不十分です。出典を追加して記事の信頼性向上にご協力ください。(このテンプレートの使い方)出典検索?: 全国童謡歌唱コンクール – ニュース · 書籍 · スカラー · CiNii · J-STAGE · NDL · dlib.jp · ジャパンサーチ · TWL(2023年6月) 童謡こどもの歌コンクール グラ...

1970 film The Anonymous VenetianTheatrical release posterDirected byEnrico Maria SalernoWritten byEnrico Maria SalernoGiuseppe BertoProduced byPio AngelettiAdriano De MicheliStarringFlorinda BolkanTony MusanteCinematographyMarcello GattiEdited byMario MorraMusic byStelvio CiprianiProductioncompanyTuri VasileDistributed byWarner Bros.Release date 30 September 1970 (1970-09-30) Running time91 minutesCountryItalyLanguageItalian Anonimo Veneziano (English: The Anonymous Venetian) i...

Kembali kehalaman sebelumnya