Appendix 1: 6800 Instruction Set

Total Page:16

File Type:pdf, Size:1020Kb

Appendix 1: 6800 Instruction Set Appendix 1: 6800 Instruction Set Store Reference Instructions ADDRESS MODES OPERATION MNEMONIC Immediate Direct Indexed Extended Add to A ADDA 8B 9B AB BB Add to B ADDB CB DB EB FB Add to A + Carry ADCA 89 99 A9 B9 Add to B + Carry ADCB C9 D9 E9 F9 AND with A ANDA 84 94 A4 B4 AND with B ANDB C4 D4 E4 F4 Bit test with A BITA 85 95 AS BS Bit test with B BITB CS D5 ES FS Clear CLR 6F 7F Compare with A CMPA 81 91 Al Bl Compare with B CMPB C1 D1 El F1 Complement (1 's) COM 63 73 Decrement DEC 6A 7A Exc1us. OR with A EORA 88 98 A8 B8 Exc1us. OR with B EORB C8 D8 E8 F8 Increment INC 6C 7C Load Acc.A LDAA 86 96 A6 B6 Load Acc. B LDAB C6 D6 E6 F6 OR with A ORAA 8A 9A AA BA OR with B ORAB CA DA EA FA Rotate Left ROL 69 79 Rotate Right ROR 66 76 Shift Left, Arith. ASL 68 78 Shift Right, Arith. ASR 67 77 Shift Right, Logic LSR 64 74 Store Acc. A STAA 97 A7 B7 Store Acc. B STAB D7 E7 F7 Subtract from A SUBA 80 90 AO BO Subtract from B SUBB CO DO EO FO 138 Appendix 1: 6800 Instruction Set 139 Sub. from A with Carry SBCA 82 92 A2 B2 Sub. from B with Carry SBCB C2 D2 E2 F2 Test TST 6D 7D Compare Index Reg. CPX 8C 9C AC BC Load Index Reg. LDX CE DE EE FE Load Stack Pointer LDS 8E 9E AE BE Store Index Reg. STX DF EF FF Store Stack Pointer STS 9F AF BF Implicitly Addressed Instructions OPERATION MNEMONIC CODE Add Accumulators ABA IB Clear Acc. A CLRA 4F Clear Acc. B CLRB SF Compare Accumulators CBA 11 Complement Acc. A COMA 43 Complement Acc. B COMB 53 Negate Acc. A NEGA 40 Negate Acc. B NEGB 50 Decimal Adjust Acc. A DAA 19 Decrement Acc. A DECA 4A Decrement Acc. B DECB SA Increment Acc. A INCA 4C Increment Acc. B INCB 5C Push from Acc. A PSHA 36 Push from Acc. B PSHB 37 Pull to Acc. A PULA 32 Pull to Acc. B PULB 33 Rotate Left Acc. A ROLA 49 Rotate Left Acc. B ROLB 59 Arith. Shift Left Acc. A ASLA 48 Arith. Shift Left Acc. B ASLB 58 Arith. Shift Right Acc. A ASRA 47 Arith. Shift Right Acc. B ASRB 57 Logic Shift Right Acc. A LSRA 44 Logic Shift Right Acc. B LSRB 54 Subtract Accumulators SBA 10 Transfer Accumulators A to B TAB 16 Transfer Accumulators B to A TBA 17 Test Acc. A TSTA 4D 140 An Introduction to Low Level Programming for MicroDrocessors Test Acc. B TSTB SD Decrement Index Reg. DEX 09 Decrement Stack Pointer DES 34 Increment Index Reg. INX 08 Increment Stack Pointer INS 31 Transfer IR to SP TXS 3S Transfer SP to IR TSX 31 Clear Carry Bit CLC OC Clear Interrupt Mask CLI OE Clear Overflow Bit CLV OA Set Carry Bit SEC OD Set Interrupt Mask SEI OF Set Overflow Bit SEV OB Transfer Acc. A to CC Reg. TAP 06 Transfer CC Reg. to Acc. A TPA 07 Branch Instructions - Relative Addressing OPERATION MNEMONIC conE Branch Always BRA 20 Branch if Carry Clear BCC 24 Branch if Carry Set BCS 2S Branch if = Zero BEQ 27 Branch if ~ Zero BGE 2C Branch if> Zero BGT 2E Branch if Higher BHI 22 Branch if ~ Zero BLE 2F Branch if Lower or Same BLS 23 Branch if Minus BMI 2B Branch if Not = Zero BNE 26 Branch if Overflow Clear BVC 28 Branch if Overflow Set BVS 29 Branch if Plus BPL 2A Branch to Subroutine BSR 8D Appendix 1: 6800 Instruction Set 141 Jump and Return Instructions ADDRESS MODES OPERATION MNEMONIC Indexed Extended Implicit Jump JMP 6E 7E Jump to Subroutine JSR AD BD No Operation NOP 01 Return from Interrupt RTI 3B Return from Subroutine RTS 39 Software Interrupt SWI 3F Wait for Interrupt WAI 3E Appendix 2: Z80 Instruction Set 8-bit Load Operations SOURCE Register Register Indirect Indexed Immed. A B C D E H L (HL) (BC) (DE) X Y 4 7F 78 79 7A 7B 7C 7D 7E OA lA DD7E F07E 3£ D R B 47 40 41 42 43 44 45 46 DD46 FD46 06 e E g C 4F 48 49 4A 4B 4C 4D 4E DD4E FD4E OE i s s D 57 50 51 52 53 54 55 56 DD56 FD56 16 t T e E SF 58 59 SA 5B 5C 5D 5E DD5E FD5E IE T H 67 60 61 62 63 64 65 66 006(, OF66 26 N L 6F 68 69 6A 6B 6e 6D 6E OD61: F06E 2E R A ,- (HL) 77 70 71 72 73 74 75 g. 36 T (BC) 02 I n (DE) 12 o d. N I DD DD DD DD DD DD DD DD n X 77 70 71 72 73 74 75 36 d e y FD FD FD FD FD FD FD FD x 77 70 71 72 73 74 75 36 The register instructions have the format LD Rd, Rs where Rd and Rs are the destination and source register respectively. Register Indirect addresses are speci­ fied as (IX + d) or (IY + d). The displacement d is held in the third byte. Two instructions allow the accumulator to be loaded from or stored in a 16-bit address nn held in the second and third bytes: 142 Appendix 2: Z80 Instruction Set 143 LD A,nn - 3A nn and LD nn, A - 32 nn To move the contents of the I and R registers to and from the Accumulator there are four instructions: LDA,I - ED57 LD I,A - ED47 LDA,R - ED5F LDR,A - ED4F 16-bit Load Operations Re gister -register LD SP,HL - F9 LD SP,IX -DDF9 LD SP,IY -FDF9 Immediate operand LD BC,nn - 01 nn LDDE,nn - 11 nn LD HL, nn - 21 nn LD SP, nn - 31 nn LDIX,nn - DD 21 nn LD IY, nn - FD 21 nn Absolute address LDBC,(nn) -ED48nn LDDE,(nn) -ED58nn LD HL, (nn) - 2A nn LD SP, (nn) - ED 7B nn LD IX, (nn) - DD2Ann LD IY, (nn) - FD 2A nn LD (nn), BC - ED 43 nn LD (nn), DE - ED 53 nn LD (nn), HL - 22 nn LD (nn), SP - ED 73 nn LD (nn), IX - DD22 nn LD (nn), IY - FD 22 nn Stack operations PUSH AF - F5 PUSH BC - C5 PUSH DE - D5 PUSH HL - E5 PUSH IX - DD E5 PUSH IY - FD E5 POP AF - 01 POPBC -Cl POPDE -01 POPHL -El POPIX -DDEI POPIY - FDEI Exchanges EX AF ,AF' - 08 EXX' - D9 EX DE,HL - EB EX (SP),HL - E3 EX (SP),1X - DD E3 EX (SP),IY - FD E3 Block Transfers Load and Increment - LDI - ED AO - LD (DE), (HL), INC HL and DE, DEC BC. Load, Increment and Repeat - LDIR - ED BO - Repeated execution of LDI until BC = O. Load and Decrement - LDD - ED A8 - LD (DE), (HL),DEC HL and DE,DEC BC. Load, Decrement and Repeat - LDDR - ED B8 - Repeated execution of LDD until BC = O. Register HL holds source address. Register DE holds destination address; Register BC is Byte Counter. 144 An Introduction to Low Level Programming for Microprocessors Block Searches Four block search instructions operate in a similar manner to the above block transfers. Each item is compared with the contents of the accumulator and the zero flag is set when a match is found. In the repeated operation the search ends when either a match is found or the byte count in register BC falls to zero. Compare and Increment - CPI - ED Al Compare, Increment and Repeat - CPIR - ED Bl Compare and Decrement - CPD - ED A9 Compare, Decrement and Repeat - CPDR - ED B9 Accumulator, Flag, and CPU Operations Decimal Adjust Acc. DAA 27 Complement Acc. CPL 2F Negate Acc. (2's Comp.) NEG ED 44 Complement Carry Flag CCF 3F Set Carry Flag SCF 37 No Operation NOP 00 Halt HALT 76 Disable Interrupts DI F3 Enable Interrupts EI FB Set Int. Mode 0 IMO ED 46 Set Int. Mode 1 IMI ED56 Set Int. Mode 2 1M2 ED 5E Restart Group Vector Address 0000 0008 0010 0018 0020 0028 0030 0038 Instruction RST 0 RST 1 RST 2 RST 3 RST 4 RST 5 RST 6 RST 7 Op. Code C7 CF D7 DF E7 EF F7 FF Appendix 2: Z80 Instruction Set 145 8-bit Arithmetic and Logic Operations SOURCE Register Addressing Reg. Indexed Imm. Ind. A B C D E H L (HL) IX IY ADD 87 80 81 82 83 84 95 86 DO FD C6 86 86 AOC 8F 88 89 8A 8B 8C 80 8E OD FD CE 8E 8E SUB 97 90 91 92 93 94 95 96 OD FD D6 96 96 SBC 9F 98 99 9A 9B 9C 9D 9E DD FD DE 9E 9E AND A7 AO Al A2 A3 A4 AS A6 DD FD E6 A6 A6 XOR AF A8 A9 AA AB AC AD AE DO FD EE AE AE OR B7 BO Bl B2 B3 B4 B5 B6 OD FD F6 B6 B6 CP BF B8 B9 BA BB BC BD BE DD FD FE Compare BE BE INC 3C 04 OC 14 lC 24 2C 34 OD FD - Increment 34 34 DEC 3D 05 OD 15 lD 25 2D 35 OD FD - Decrement 35 35 The third byte of the indexed instructions carries the displacement.
Recommended publications
  • Community Center Rojc, Pula, Croatia
    SOLIDARITY MOVERS OF ROJC Community center Rojc, Pula, Croatia CONTENT Community center Rojc Rojc Alliance About the project Activities About Pula Currency How to get to Pula Meet the team Contact Follow us Community center Rojc is a unique space Community for culture and civil society. Situated in a repurposed building that forms part of the cultural heritage of Pula, the center gathers center Rojc over a hundred organisations under one roof while also hosting numerous cultural and social events. The center is polivalent space with wide spectrum of activities: culture, sports, psychosocial care and health services, activities for children and youth, care for the disabled, environmental protection, technical culture, ethnic minorities, etc. Community center Rojc is a member of Trans Europe Halles. Rojc Alliance The Rojc Alliance is a network of Rojc organizations that presents and represents common interests, promotes mutual cooperation and carries out community actions and events. Main activities of Rojc Alliance are: management and events in Rojc public spaces - the Living room and inner courtyard; community radio Radio Rojc; community development programs; participatory governance; networking and fostering development of cultural and community centers; European Solidarity Corps volunteering progams. The Rojc Alliance has formed a kind of civic-public partnership with the City of Pula, which co- governs the center and encourages its development. WHAT WE DO The center is a host to 110 associations from various fields. Thousands of Rojc inhabitants and their visitors pass through its painted hallways each week – bringing vivid influence to the community life. PROJECT NAME Solidarity movers of Rojc PROJECT DURATION 1.8.2019.
    [Show full text]
  • Go Forth with TTL !
    Go Forth with TTL ! The Gigatron TTL Color Computer Forth for a Very Unusual Processor Ken Boak SV Fig. Forth Day 2019 . In September of 1975, MOS Technology launched the 6502 at the Wescon75 Computer Conference in San Francisco. Chuck Peddle and his team had created a very lean, stripped down, small die cpu. Costing just $25, the 6502 was a fraction of the cost of its nearest competitor. At that time the Intel 8080 was $360 and the Motorola 6800 was $175 . The 6502 was clearly a disruptive usurper. 25 year old, HP Engineer, Steve Wozniak, realised that this new microprocessor would be a game-changer and went on to incorporate it into the small computer he was developing. That machine went on to become the Apple I. In 1975 7400 TTL was the “Bread and Butter” of logic design: 7400 series TTL integrated circuits were developed in the early 1960’s. Initially quite expensive so mainly used in Military and Aerospace applications. By the early 1970’s TTL had become a versatile family of standardised, low cost,. easy to use logic. Typically about $1 per device. 7400 series logic was widely used in the design of minicomputers, including the PDP-11, the Data General Nova 1200 and later models of PDP-8. TTL was a viable, faster and cheaper processing solution than the emerging 8-bit microprocessors such as MOS 6502, Intel 8080 and the Motorola 6800. Essential Reading 16-bit TTL CPU board from Data General Nova 1200 The Gigatron TTL Computer – What is it? Started as a Hackaday.io project in Spring 2017 by Marcel van Kervinck of The Hague, Netherlands.
    [Show full text]
  • Exploring Software Inefficiency With
    ZeroSpy: Exploring Software Inefficiency with Redundant Zeros Xin You∗, Hailong Yang∗y, Zhongzhi Luan∗, Depei Qian∗ and Xu Liuz Beihang University, China∗, North Carolina State University, USAz State Key Laboratory of Mathematical Engineering and Advanced Computing, Wuxi, Chinay fyouxin2015,hailong.yang,07680,[email protected]∗, [email protected] Abstract—Redundant zeros cause inefficiencies in which the 1 for(int i=0;i<1000;++i) { 2 A[i] = 0; B[i] = i; zero values are loaded and computed repeatedly, resulting in 3 } 4 ... unnecessary memory traffic and identity computation that waste 5 for(int i=0;i<1000;++i) memory bandwidth and CPU resources. Optimizing compilers 6 I C[i] = A[i]-B[i]; is difficult in eliminating these zero-related inefficiencies due to Listing 1. An example code working on redundant zeros, where all variables are 32-bit integers. limitations in static analysis. Hardware approaches, in contrast, optimize inefficiencies without code modification, but are not enough to fulfill the computation, which yields better cache widely adopted in commodity processors. In this paper, we 1 propose ZeroSpy - a fine-grained profiler to identify redundant usage and vectorization potentials . zeros caused by both inappropriate use of data structures and Actually, a larger number of real-world applications (e.g., useless computation. ZeroSpy also provides intuitive optimization deep neural network and high-efficiency video coding) have guidance by revealing the locations where the redundant zeros already been reported to contain a significant amount of happen in source lines and calling contexts. The experimental redundant zeros and achieved significant speedup from the results demonstrate ZeroSpy is capable of identifying redundant zeros in programs that have been highly optimized for years.
    [Show full text]
  • D6.4 Case Study D
    Grant Agreement Number: INEA/CEF/TRAN/M2018/179967 Project acronym: SLAIN Project full title: Saving Lives Assessing and Improving TEN-T Road Network Safety D. 1.0 Due delivery date: 31st March 2021 Actual delivery date: 13th March 2021 Organisation name of lead participant for this deliverable: RSI ‘Panos Mylonas’ D6.4: Activity 6 case studies group D Co-financed by the Connecting Europe Facility of the European Union SLAIN 1 V1.3 Document Control Sheet Version Input by Consortium partners History V1.0 Version for submission to INEA Legal Disclaimer The information in this document is provided “as is”, and no guarantee or warranty is given that the information is fit for any particular purpose. The above referenced consortium members shall have no liability for damages of any kind including without limitation direct, special, indirect, or consequential damages that may result from the use of these materials subject to any liability which is mandatory due to applicable law. © 2020 by SLAIN Consortium. Acknowledgement The SLAIN beneficiaries are grateful to EuroRAP and iRAP for the research information provided. The report was coordinated and prepared by RSI Panos Mylonas, supported by iRAP and the Road Safety Foundation, with liaison with INEA by the project coordinator EuroRAP. Individual project partners provided the case studies. Abbreviations and Acronyms Acronym Abreviation SLAIN Saving Lives Assessing and Improving Network Safety TEN-T Trans-European Network - Transport GIS Geographic Information System SRIP Safer Roads Investment Plans RSA Road Safety Audit RSI Road Safety Inspection SLAIN 2 Version 1.0 Table of Contents 1 Introduction .................................................................................................................................................. 4 1.1 SLAIN project objectives ...................................................................................................................
    [Show full text]
  • Sustainable Financing Review for Croatia Protected Areas
    The World Bank Sustainable Financing Review for Croatia Protected Areas October 2009 www.erm.com Delivering sustainable solutions in a more competitive world The World Bank /PROFOR Sustainable Financing Review for Croatia Protected Areas October 2009 Prepared by: James Spurgeon (ERM Ltd), Nick Marchesi (Pescares), Zrinca Mesic (Oikon) and Lee Thomas (Independent). For and on behalf of Environmental Resources Management Approved by: Eamonn Barrett Signed: Position: Partner Date: 27 October 2009 This report has been prepared by Environmental Resources Management the trading name of Environmental Resources Management Limited, with all reasonable skill, care and diligence within the terms of the Contract with the client, incorporating our General Terms and Conditions of Business and taking account of the resources devoted to it by agreement with the client. We disclaim any responsibility to the client and others in respect of any matters outside the scope of the above. This report is confidential to the client and we accept no responsibility of whatsoever nature to third parties to whom this report, or any part thereof, is made known. Any such party relies on the report at their own risk. Environmental Resources Management Limited Incorporated in the United Kingdom with registration number 1014622 Registered Office: 8 Cavendish Square, London, W1G 0ER CONTENTS 1 INTRODUCTION 1 1.1 BACKGROUND 1 1.2 AIMS 2 1.3 APPROACH 2 1.4 STRUCTURE OF REPORT 3 1.5 WHAT DO WE MEAN BY SUSTAINABLE FINANCE 3 2 PA FINANCING IN CROATIA 5 2.1 CATEGORIES OF PROTECTED
    [Show full text]
  • 6502 Introduction
    6502 Introduction Philipp Koehn 18 September 2019 Philipp Koehn Computer Systems Fundamentals: 6502 Introduction 18 September 2019 1 some history Philipp Koehn Computer Systems Fundamentals: 6502 Introduction 18 September 2019 1971 2 • First microprocessor on an integrated circuit: Intel 4004 • 4-bit central processing unit, 12 bit address space (4KB) Philipp Koehn Computer Systems Fundamentals: 6502 Introduction 18 September 2019 1975 3 • MOS Technology 6502 • Dominant CPU in home computers for a decade (Atari, Apple II, Nintendo Entertainment System, Commodore PET) Philipp Koehn Computer Systems Fundamentals: 6502 Introduction 18 September 2019 1977 4 • Atari 2600 • Video game console: Pong, Pac Man, ... connected to TV Philipp Koehn Computer Systems Fundamentals: 6502 Introduction 18 September 2019 1980 5 • Commodore VIC20 • 1 MHz, 5KB RAM, BASIC, 3.5KB RAM, 176x184 3 bit color video Philipp Koehn Computer Systems Fundamentals: 6502 Introduction 18 September 2019 1982 6 • Commodore C64 • 64KB RAM, 320x200 4 bit color video Philipp Koehn Computer Systems Fundamentals: 6502 Introduction 18 September 2019 Commodore C64 7 • BASIC programming language, but serious programs written in assembly • No fancy stuff like multi-process, user accounts, virtual memory, etc. • Machine itself had no mass storage - had to buy tape drive, then floppy disk drive, machine was obsolete once hard drives came around Philipp Koehn Computer Systems Fundamentals: 6502 Introduction 18 September 2019 BASIC Demo 8 • Commands get executed (just like Python interpreter)
    [Show full text]
  • Download a Sample
    Preface Like many American kids in 1979, I woke up to find that Santa had left a brand new Atari VCS1 under the tree (thanks, Mom and Dad, for paying Santa’s invoice!). This was a pretty big deal for a six- year-old who could tell you the location and manufacturer of every standup arcade cabinet within a five mile radius. Having an “arcade in your home” wasn’t just a thing you saw on Silver Spoons, it was now a real thing. The sights and sounds that jumped o↵ of our little Panasonic color TV probably deserve a gigantic run-on sentence worthy of Dylan Thomas, as my brother and I bounced tiny pixellated missiles o↵ of walls in Combat, combed through the perplexing game modes of Space Invaders, battled angry duck-like dragons in Adventure, and became Superman as we put flickering bad guys in a flickering jail. These cartridges were opaque obelisks packaged in boxes with fantastically unattainable illustrations, available at K-Mart for $30 or so. You could tell these species of video games weren’t related to arcade games, though they had a unique look-and-feel of their own. We also had an Apple ][ by this time, so I tried to fit all of these creatures into a digital taxonomy. Atari games had colors and fast motion, but not as much as arcade games, and they never were as complex as Apple ][ games. What made them tick? Why were Activision games so much more detailed? Would the missile still blow up your spaceship if you turned the TV o↵? (Turns out the answer is yes.) 1 It wasn’t sold as “Atari 2600” until 1982.
    [Show full text]
  • Etir Code Lists
    eTIR Code Lists Code lists CL01 Equipment size and type description code (UN/EDIFACT 8155) Code specifying the size and type of equipment. 1 Dime coated tank A tank coated with dime. 2 Epoxy coated tank A tank coated with epoxy. 6 Pressurized tank A tank capable of holding pressurized goods. 7 Refrigerated tank A tank capable of keeping goods refrigerated. 9 Stainless steel tank A tank made of stainless steel. 10 Nonworking reefer container 40 ft A 40 foot refrigerated container that is not actively controlling temperature of the product. 12 Europallet 80 x 120 cm. 13 Scandinavian pallet 100 x 120 cm. 14 Trailer Non self-propelled vehicle designed for the carriage of cargo so that it can be towed by a motor vehicle. 15 Nonworking reefer container 20 ft A 20 foot refrigerated container that is not actively controlling temperature of the product. 16 Exchangeable pallet Standard pallet exchangeable following international convention. 17 Semi-trailer Non self propelled vehicle without front wheels designed for the carriage of cargo and provided with a kingpin. 18 Tank container 20 feet A tank container with a length of 20 feet. 19 Tank container 30 feet A tank container with a length of 30 feet. 20 Tank container 40 feet A tank container with a length of 40 feet. 21 Container IC 20 feet A container owned by InterContainer, a European railway subsidiary, with a length of 20 feet. 22 Container IC 30 feet A container owned by InterContainer, a European railway subsidiary, with a length of 30 feet. 23 Container IC 40 feet A container owned by InterContainer, a European railway subsidiary, with a length of 40 feet.
    [Show full text]
  • The Ultimate C64 Overview Michael Steil, 25Th Chaos Communication Congress 2008
    The Ultimate C64 Overview Michael Steil, http://www.pagetable.com/ 25th Chaos Communication Congress 2008 Retrocomputing is cool as never before. People play Look and Feel C64 games in emulators and listen to SID music, but few people know much about the C64 architecture A C64 only needs to be connected to power and a TV and its limitations, and what programming was like set (or monitor) to be fully functional. When turned back then. This paper attempts to give a comprehen- on, it shows a blue-on-blue theme with a startup mes- sive overview of the Commodore 64, including its in- sage and drops into a BASIC interpreter derived from ternals and quirks, making the point that classic Microsoft BASIC. In order to load and save BASIC computer systems aren't all that hard to understand - programs or use third party software, the C64 re- and that programmers today should be more aware of quires mass storage - either a “datasette” cassette the art that programming once used to be. tape drive or a disk drive like the 5.25" Commodore 1541. Commodore History Unless the user really wanted to interact with the BA- SIC interpreter, he would typically only use the BA- Commodore Business Machines was founded in 1962 SIC instructions LOAD, LIST and RUN in order to by Jack Tramiel. The company specialized on elec- access mass storage. LOAD"$",8 followed by LIST tronic calculators, and in 1976, Commodore bought shows the directory of the disk in the drive, and the chip manufacturer MOS Technology and decided LOAD"filename",8 followed by RUN would load and to have Chuck Peddle from MOS evolve their KIM-1 start a program.
    [Show full text]
  • Croatia National Report 2007
    CROATIA NATIONAL REPORT 2007 I Network The total length of motorway network, as completed by the end of 2007 in Croatia, amounts to 1163.5 km. In 2007, 75,9 km of new motorways and 3,8 km of semi motorways were built (as compared to 43 km that were built in 2006), and 15,7 km of existing roads were upgraded to the full motorway profile: On the Motorway A1: Zagreb - Split - Ploče; Dugopolje-Bisko-Šestanovac Sections (37 km) - opened to traffic in full profile in 06/2007 On the Motorway A2: Zagreb - Macelj Krapina-Macelj Section (17.2 km) –13,4 km was completed as full motorway and 3,8 km as semi motorway On the Motorway A5: Beli Manastir-Osijek-border with Bosnia and Herzegovina Sredanci-Đakovo Section (23 km) – opened to traffic as full motorway in 11/2007 On the Motorway A6: Zagreb - Rijeka - on the Vrbovsko-Bosiljevo Section (8,44 km) – upgrade to the full motorway profile of the viaduct Zeceve Drage, tunnel Veliki Gložac, viaduct Osojnik and viaduct Severinske Drage together with corresponding motorway segments in 06/2007 - on the Oštrovica-Kikovica Section (7,25 km) - upgrade to the full motorway profile in 11/2007 On the Motorway A11: Zagreb – Sisak On the Jakuševec-Velika Gorica South Section – completion of the interchange Velika Gorica South and 2,5 km of a motorway segment in 5/2007 and in 09/2007 In Croatia, motorways are operated by 4 companies, i.e. by Hrvatske autoceste d.o.o. (operates all toll motorways except for those in concession) and by three concession companies BINA-ISTRA d.d.
    [Show full text]
  • Pinia Residence
    Address: Špadići 2 / 52440 Poreč, Croatia Sales & Info: T + 385 52 408 000 F + 385 52 460 199 E [email protected] Valamar Reservation Center: + 385 52 465 000 www.valamar.com PINIA RESIDENCE Pinia Residence, located in a pleasant shade of · wide selection of drinks, refreshments Bike hotel pine-tree park, is an ideal choice for families and and ice creams (In Valamar Pinia hotel) those eager for sea, sun and fun. · evening entertainment with DJ’s and live music · safe bike storage (capacity 160 bicycles) · bike maps available · open April - October Pools (in Valamar Pinia Hotel) · bike washing area · Residence: 96 apartments / 339 beds · outdoor swimming pool with sea water · set of tools for simple repairs · air conditioning · shallow children’s pool · GPS device rental · parking (at extra charge) (rubber rings and armbands available) · GPS tour book with recommended bike tours · deck chairs and parasols free of charge Certificates · info map with information about bike services, · ISO 9001:2008, ISO 14001:2004, HACCP Beaches shops and events in the region in the vicinity of the apartments · daily washing of sports clothes (extra charge) Location · grass and stone-paved beach · nutritious breakfast, lunch and dinner Easy 15 minutes walk from the heart of them just next to the hotel · high energy lunch box available to order (extra charge) charming town of Poreč, one of the most famous · Blue Flag - a recognition of clean sea and coast · high quality bike rental (extra charge) Croatian vacation destinations. · natural shade · organized
    [Show full text]
  • W65C02S Microprocessor DATA SHEET
    The Western Design Center, Inc. February 2004 W65C02S Data Sheet W65C02S Microprocessor DATA SHEET WDC ã The Western Design Center, Inc., 2003. All rights reserved The Western Design Center, Inc. February 2004 W65C02S Data Sheet WDC reserves the right to make changes at any time without notice in order to improve design and supply the best possible product. Information contained herein is provided gratuitously and without liability, to any user. Reasonable efforts have been made to verify the accuracy of the information but no guarantee whatsoever is given as to the accuracy or as to its applicability to particular uses. In every instance, it must be the responsibility of the user to determine the suitability of the products for each application. WDC products are not authorized for use as critical components in life support devices or systems. Nothing contained herein shall be construed as a recommendation to use any product in violation of existing patents or other rights of third parties. The sale of any WDC product is subject to all WDC Terms and Conditions of Sales and Sales Policies, copies of which are available upon request. Copyright Ó1981-2004 by The Western Design Center, Inc. All rights reserved, including the right of reproduction, in whole, or in part, in any form. The Western Design Center, Inc. W65C02S Data Sheet 2 The Western Design Center, Inc. W65C02S Data Sheet TABLE OF CONTENTS 1 INTRODUCTION................................................................................................................................................................................5
    [Show full text]