Free Essay

Interupts

In: Computers and Technology

Submitted By adiyad500
Words 1267
Pages 6
INTERRUPTS
• The difference between Hardware and Software Interrupts (eg. BIOS/DOS calls) is that an external device, not programmer, causes the hardware interrupt to occur. For eg. There is a keyboard interrupt which causes the PC to read a character typed. • Types of Interrupts and Priorities
– – – – – Reset (Highest Priority) Internal Interrupts and Exceptions Software Interrupts: SWI (INT #) NonMaskable Interrupts (NMI): External Hardware External (maskable) Hardware (Lowest Priority)

Interrupt Vectors
• All interrupts involve obtaining a vector (8 bit #) which is used by the MPU to fetch the address of the Interrupt Service Routine (ISR). • The address of the ISRs are in a table in memory beginning at 00h • Each entry (4B) in the table contains IP & CS of the corresponding ISR start address.

Interrupt Vector Table
Mem addr
Vector

Sys Services

70h*4

9*4 8*4

08 04 02 00

. . CS70h IP70h . . CS9 IP9 CS8 IP8 . . CS2 IP2 CS1 IP1 CS0 IP0

Vec 70h - CMOS Real Time Clock Vec 9 - PC Keyboard OR coprocessor seg overflow Vec 8 - PC Sys Timer OR interrupt table limit too small

Vec 2 - NMI Vec 1 - debug Vec 0 - divide error

Note: There is maximum of 256 vectors in Real Mode.

Hardware Requirements for Interrupts

RAM

ROM

INTR

INT

MPU INTA# reset NMI

Interrupt Controller IR7 IR0

io1 ...

io7

8259 Programmable Interrupt Controller (PIC)
• The 8259 PIC functions as overall mgr of an interrupt system environment. • Each PIC has up to 8 interrupt request (IR) inputs • Expandable up to 64 interrupt levels via cascading in a Primary Secondary environment. • Some Internal Registers are
– Interrupt Req. Reg (IRR): 8b reg storing 8 independent IRQs – In-Service Reg (SR): 8b reg storing interrupt levels which are being serviced – Interrupt Mask Reg (IMR): 8b reg storing interrupt levels to be masked. It operates on IRRs.

PIC Details
Interrupt Request to MPU Interrupt ACK from MPU Data Bus: interrupt vec, control, and status info sent on this bus Read Write Address: for selecting internal regs Chip Select Cascade: Output from Pri (goes to all Secs at same time); Input to Sec. Slave Prog/Enable Buffer INT INTA# D7-D0 RD# WR# A0 CS# CAS0 CAS1 CAS2 SP#/EN# IR0 IR1 Interrupt Requests . . .

8259 PIC

IR7

Programming the PIC
• Initialization Command Words (ICWs) – a series of initialization words in the order: ICW1, ICW2, [ICW3], [ICW4] • ICWs are identified as follows cs# A0 ICW 0 0 ICW1 0 1 ICW2, ICW3, ICW4 1 x PIC disabled • For eg. Master PIC in PC is at Port 20h. Thus addr of ICW1=20h; ICW2, …ICW3=21h

ICW1
• Indicates whether there’s more than one PIC and whether ICW4 is needed b7 0 b6 0 b5 0 b4 1 b3 ltim b2 0 b1 sngl bo icw4

• icw4=1==> ICW4 needed • sngl (single) = 1=> single 8259; =0 => multiple (cascade) • ltim (level timing) =1 => level input (IRi) to 8259; =0 => edge-triggered input. • B4=1 indicates ICW1

ICW2 (Interrupt Vector) b7 T7 b6 T6 b5 T5 b4 T4 b3 T3 b2 T2 b1 T1 bo T0

• • • • • •

T2 T1 T0 = 000 = Interrupt Vector for IR0. Interrupt Vectors for IR1, …, IR7 are derived automatically. For eg. That of IR7=111 Higher order bits (b7…b3)are fixed by programmer. In P/S mode, there is a separate ICW2 for Pri and Secondary using the same format. In current PCs IRQ0 (on Pri) is assigned vector= 08h, …irq7 vec=0fh Sec PIC's IRQs are irq8=ir0=70h, …, irq15=1R7=77h

ICW3 (Used in P/S Mode only)
• Separate ICW3 format for Pri and Sec. Master icw3 format follows b7 S7 • • b6 S6 b5 S5 b4 S4 b3 S3 b2 S2 b1 S1 bo S0

Si =1 => IRQi input has a secondary (slave) connected to it Secondary ICW3 format b7 0 b6 0 b5 0 b4 0 b3 0 b2 d2 b1 d1 bo d0

D2D1D0= ID# of Pri’s IR input Sec is connected to. =000 => slave ID =0, …, =111 => slave ID = 7.

PIC Configuration in typical PC
Vector in icw2 =08h IRQ0 IRQ1 IRQ3 IRQ7 . . Port A0h Vec 70h IRQ8 IRQ9 IRQ15 . . IR0 IR1 INT CAS0-2 Sec PIC INTA# IR7 Port 20h Vec 08h IR0 INT IR1 IR2 Pri PIC IR3 INTA# IR7 CAS0-2 SP#/EN# = Vcc=1 INTR MPU

LOGIC

SP#/EN# = 0

Examples
• In current PCs,
– edge triggered inputs – 2 cascaded PICs – ICW4 needed

• ICW1=00010001=11h mov al, 11h out 20h, al

• There is a single secondary connected to the Primary’s IR2 • Primary’s ICW3 = 00000100=04h • Secondary’s ICW3= 00000010=02h

ICW4 b7 T7 b6 T6 b5 T5 b4 b3 b2 MS b1 AEOI bo PM

SFNM BUF

1=Special Fully Nested Mode

0 X = nonbuffered 1 0 = buff mode sec 1 1 = buff mode pri

1=Auto EOI 0=Manual EOI Processor Mode: Must be = 1 for 386 and later

Note: There is a separate ICW4 for Pri and Sec using the same format

What is AutoEOI?

ICW4 (Buffered Mode and SFNM)
• BUF=1, Buffered Mode – Is used in large cascaded sys where data bus must be buffered and with a bi-directional bus – In this case BUF=1 means for PIC to send enable (EN#) signal on SP#/EN#. Thus EN#=L=0 whenever data is output from PIC to MPU – Because SP#/EN# is used as Pri/Sec selector in Non-buffered mode we have to find another way of specifying Pri/Sec in a buffered mode. • This is done in software by programming Bit2 • Bit2= MS = 0 for buffered mode Slave = 1 for Buffered Mode Master SFNM=1 is a SPECIAL FULLY NESTED MODE also used in cascaded systems. SFNM is enabled only for the Master and not Slaves. Details on this later.



Operation Command Words (OCWs)
• These words are sent to 8259 after ICWs have been sent. • OCWs do not have to be sent in sequence. • OCW Port Numbers
CS# A0 OCW 0 0 OCW2, OCW3 0 1 OCW1 Pri 20h 21h Sec a0h a1h

OCW1 (Setting Interrupt Mask)
• The bits go to the Interrupt Mask Register • The bits can also be Read to determine mask register contents. Thus it is a R/W reg. b7 M7 b6 M6 b5 M5 b4 M4 b3 M3 b2 M2 b1 M1 bo M0

Mi = 1 => Interrupt i is Masked. Ie. Not recognized by PIC

OCW2 (Assigns Specific Priority to IRQs and Used for Specifying EOIs)
Format Follows b7 R

: b5 EOI 0 b4 b3 0 b2 L2 b1 L1 bo L0

b6 SL

Rotation Specific Level End-Of-Interrupt

000 = Level 0 001 = Level 1 ... 111 = Level 7

OCW2 DETAILS
R 0 0 1 1 0 1 1 0 SL 0 1 0 0 0 1 1 1 EOI 1 1 1 0 0 1 0 0 Description Non specific EOI cmd *Specific EOI cmd Rotate on Nonspec EOI cmd Rotate in Auto EOI mode(set) Rotate in Auto EOI mode(clr) *Rotate on Specific EOI cmd *Set Priority cmd No Operation *: L2L1L0 are used

OCW3
• For reading Interrupt Request Reg (IRR) • For reading In-Service Register (ISReg) • For Issuing Poll Command • For Enable/Disable Special Mask Mode

OCW3 FORMAT b7 X b6 b5 b4 0 b3 1 b2 P b1 RR bo RIS

ESMM SMM

RST Special Mask = 10 Set Special Mask = 11 Poll/No Poll

0 x: No Action 1 0: Read IRR on nxt RD pulse 1 1: Read ISReg on nxt RD pulse

POLL WORD FORMAT b7 I b6 b4 0 b2 W2 b1 W1 bo W0

b5

b3 1

Interrupt Occurred

Code of Highest Priority Interrupt Req.

Note: Poll Word is issued by PIC in response to Poll from MPU via OCW3

Similar Documents

Premium Essay

Importance Of Student Declaration Of Independence

...- some students don't care about their educaton and interupt other students from learning. -Other stuudents don't find school to be interesting and skip out of class which violates the school rules. Statements of Prior Attempts to redress grievances Even after all of the statements provided on the slide above, i believe it is important that we either help out the student in understanding what he is doing is affecting his education and also breaking the school rules. I have even thought about what these students would do if they try bothering other students and i think they should just be moved to a location in which they wont bother the other students. Declaration of independence Therefore i believe the representation of the students should improve after the all the statement provided above. Even...

Words: 448 - Pages: 2

Free Essay

Royale Family

...second main feature i found used is slang with the words "mates" and "P.". Slang is a very informal language mainly exchanged between people who know each other which is why I think it is a very effective feature to use because the script is written for an acting family so the producers/authors may have used slang to engage and attract the audience and also to to allow them to connect and it takes and formal views away to create more of a humorous scene. Both of these words can link to abbreviation as well with "P." being an abbreviation of pence and "mates" being an abbreviation of friends. Another framework I came across in the extract is discourse and a big feature used throughout is high frequency turn taking, not once does anyone interupt, the conversation flows fluently although a lot of informal language is used there is still no interuptions, and with turn taking there is quite a few adjacency pairs for example "Hey Mary, is your Cheryl...

Words: 598 - Pages: 3

Premium Essay

Legal Structure

...government plays a role in the structure of the American legal system. Federal government has power over all fifty states, while state government only has the power within their own boundaries. The power of the state government can only make laws that doesn’t conflict with the federal government. Each government has their own organization that they follow that makes the American legal system. The federal government consists of three branches: legislative, judicial, and exective. Within our legal system each branch of government plays a distinctive role that doesn’t over power the other branches due to checks and balances. The legislative branch consists of congress which writes the laws. The judicial branch consists of the Supreme Court that interupts the laws. The exective branch is the president and the president’s cabinet that enforces the laws. (Banker, 2010, p. 22) The federal government is granted express and implied powers. Express powers are granted to congress and spelled out in the U.S. Constitution. Implied powers are regulated powers that are derived from the express powers. Congress has the right to regulate such matters as coining money, establishing post offices, and to make all laws necessary and proper for carrying out delegated powers. (Banker, 2010, p.16). “The U.S. Constitution establishes and defines the role of the federal government and its relationship to the people of the United States” (Banker, 2010, p.25). States have a...

Words: 738 - Pages: 3

Free Essay

Young Goodman Brown" and "The Child by Tiger

...The Bible says, in John 10:10, "The thief only comes tosteal and kill and destroy; I have come that they may have life, and have it to the full."(NIV). If either one of the protagonists where actively guarding themselves against the thief, Satan, the endings would have been very different. Their knowledge of the Word, gave them a false confidence in themselves rather than a confidence in God and the presence of the Holy Spirit around them, allowing them to let their guard down and opening the door for the devil. In both short stories, "Young Goodman Brown" by Nathaniel Hawthorne and Thomas Wofe's "The Child by Tiger", the protagonists are both religious men coming from very different backgrounds and time periods. They struggle not only with their earthly desires but also their beliefs in God and how they deal with the conflicts of their choices. The authors of these stories write of the spiritual conflicts suffered by the corresponding protagonists by using different points of view and different time periods, which creates its own stuggles. In the short story "Young Goodman Brown" the title character and protagonist, Goodman Brown grows up in the Catholic Church and comes from a reputation of generations of good, upstanding and religious men. The time period of this story is in the 1700's in Salem Massachusetts. This is probably why the witch's ceremony enters into Goodman's dream. This is a great way for the evil to antagonize Goodman. Whereas, in Wolfe's story, Dick...

Words: 727 - Pages: 3

Premium Essay

A Student

...by Ngoni Doma QSTN 1 Explain ways of making your presentation appealing to and catch the full attention of your audience using Ms Powerpoint.Use examples in your answer. Ms Powerpoint as a presentation software,it has the ability to combine text,sound,video and graphics and therefore releasing a quality presentation.For an Ms Powerpoint presentation to be more appealing the user has to do some of the following ways: KNOW YOUR GOAL AND AUDIENCE It is crucial to know the purpose of your presentation and helps to plan it out in some detail pertaining to your objective.Therefore as part of your planning it is crucial to understand your audience before you design the presentation,this enables you to know the way in which you must present it. GET NICE BACKGROUNDS AND APPROPRIATE COLOR SCHEME a presentation can be more appealing,if the creator applies great backgrounds before anything is added on it,it must be attractive and there must be color cordination.The use of flashy colours may give a positive respond from your audience unless they are appropriately applied.For instance,Ms Powerpoint 2010 has better backgrounds and you can also take some from other external designers. CHOICE OF FONT SCHEME AND LAYOUT font size must be easy for the audience to read,if the presentation is in text format and the layout nf the slide should have a good look.The use of bullet points as part of the layout can be interesting since the audience is able to fetch out the crucial information...

Words: 766 - Pages: 4

Premium Essay

A Student

...CHINHOYI UNIVERSITY OF TECHNOLOGY SURNAME : DOMA NAME : NGONI REG NO ; C15126620P LEVEL : 1.1 PROGRAM : BACHELOR OF SCIENCE HONOURS DEGREE IN ACCOUNTANCY MODULE : INFORMATION TECHNOLOGY AND COMPUTER APPLICATIONS CODE : CUIT 112 LECTURER : T. MASAMHA QSTN 1 Explain ways of making your presentation appealing to and catch the full attention of your audience using Ms Powerpoint.Use examples in your answer. Ms Powerpoint as a presentation software,it has the ability to combine text,sound,video and graphics and therefore releasing a quality presentation.For an Ms Powerpoint presentation to be more appealing the user has to do some of the following ways: KNOW YOUR GOAL AND AUDIENCE It is crucial to know the purpose of your presentation and helps to plan it out in some detail pertaining to your objective.Therefore as part of your planning it is crucial to understand your audience before you design the presentation,this enables you to know the way in which you must present it. GET NICE BACKGROUNDS AND APPROPRIATE COLOR SCHEME a presentation can be more appealing,if the creator applies great backgrounds before anything is added on it,it must be attractive and there must be color cordination.The use of flashy colours may give a positive...

Words: 797 - Pages: 4

Premium Essay

Nt1310 Unit 3 Control Unit

...fastest form of permanent rewriteable storage and is cheap enough for massive storage. Task 2 Polling Polling is where the CPU will send a message checking if a device needs to send information that needs processing. Polling is done by using a polling program which will share processing time with currently running tasks and when the device needs information processing it will sends a couple of bits to the device status registry. The downside to this method is that there is a consent process checking if there is data needed to be processed and sent which means that there is wasted resources as most of the time there will be nothing to be processed. Interrupts Interrupts are when a device sends a message to the CPU by using the controll bus interupt line that he needs attention so the CPU will then drop everything by dumping the current data being processed and the contence of the general purpose registers in an area of memory called the stack to processes the new instruction. Once the instruction from the device has completed the CPU will pick back up where it left off by loading the instructions back from the stack. When an interrupt is send the device must send some code which tells the cpu how to handle its needs this is called an interrrupt hander. Every device which is cababable of sending a interrupt needs to have its own uniqe interrupt hander which is loaded into ram during boot. Comparison Interrupts are more efficient in my opinion as it may be slightly slower than polling...

Words: 1323 - Pages: 6

Premium Essay

Sir Gawain And The Green Knight Analysis

...Everything is going wonderfully, until a green knight barges in the castle, and interupts the festivites. The bizarre site of a completely man renders all of the bold and courageos knights Immobile; this includes agawin. Following his entrance, the green knight offers a challenge to anyone coragous enough to try, and when now one attemps, he insults the entire court. "What, is this Arthor's house,... whose fame is so fair in far realms and wide? Where is now your arrogance and your awesome deeds,... Now are the revel and renown of ther Round Table... For all cower and quake, and no cut Felt!" Here, all of arthur's knights fail to uphold rule number 2, live for honor and glory, as the allow the green knight to insult them. In fact, nobody offers any sort of retort the green knight. Instead they just sit and wait for something...

Words: 1020 - Pages: 5

Free Essay

Infotech 3i

...part of PSW(Program Status Word) Ans: (d) 6. Frequency at which VOICE is sampled is a) 4 Khz b) 8 Khz c) 16 Khz d) 64 Khz Ans: (a) 7. Line of Sight is a) Straight Line b) Parabolic c) Tx & Rx should be visible to each other d) none Ans: (c) 8. Purpose of PC(Program Counter) in a MicroProcessor is a) To store address of TOS(Top Of Stack) b) To store address of next instruction to be executed. c) count the number of instructions. d) to store base address of the stack. Ans: (b) 9. What action is taken when the processor under execution is interrupted by a non-maskable interrupt? a) Processor serves the interrupt request after completing the execution of the current instruction. b) Processor serves the interupt request after completing the current task. c) Processor serves the interupt request immediately. ITtestPapers.com – Placement Papers, Interview...

Words: 2873 - Pages: 12

Premium Essay

Mis 535 Course Project

...Course Project Tara A. J. Courtney Managerial Applications of Information Technology Professor: Peter Newman Due: June 12, 2016 Table of contents…2 Abstract…3 Brief company background…4 Discussion of business problem(s)...5 High level solution...7 Benefits of solving the problem...9 Business or technical approach...11 Business process changes...13 Technology or business practices used to augment the solution...14 Conclusions and overall recommendations...14 High-level implementation plan...15 Summary of project...15 References...17 Abstract We are living in another revolution since the Industrial Revolution. Some call it the 3rd Industrial Revolution, the Digital Revolution, the Information Age, the Digital Era, the Communication Technology Revolution, or the Technology Age. Regardless of what it is called, technology has evolved our world into a Global Marketplace. I’m watching a mom and pop company strategize to transform the way they do business by preparing to adopt a software system to help them de-clutter, organize and handle the growing amount of business they are acquiring. They use cloud based software, but the capabilities are limited. Some companies struggle to innovate and collaborate to the next level of business which involves them getting organized and taking the leap to improve their technologies. Improving company systems and process ultimately leads to the improvement...

Words: 2852 - Pages: 12

Free Essay

Menstrual Hygiene Management Amongst School Going Adolescent Girls in Public Mixed Secondary Day Schools in Kisii Township

...Original Research Article Menstrual hygiene management amongst school going girls in Kisii County, Kenya Definitions Pubic mixed day secondary schools- government schools with both boys and girls who do not board in the school. ABSTRACT Introduction: Menstruation is a natural phenomenon among matured females who experience shedding of blood for 1-7 days every month from the age of maturity until menopause. Menstrual hygiene management is an issue that is insufficiently acknowledged and has not received adequate attention. Objective: To evaluate the knowledge and practice on menstrual hygiene among school going girls and assess access to clean, safe and private space for menstrual hygiene management in schools Problem Statement: There is lack of clean, safe and private space for menstrual hygiene purposes. Poor menstrual hygiene practices are affecting the health well being of girls including anxiety, infection, education and discomfort. In mixed day secondary schools, there are no special Water, Sanitation and Hygiene (WASH) facilities for the purposes of handling menstruation safely and in dignity Methodology: A descriptive crosssectional study was conducted as from March 2014 to April 2014 on 175 girls recruited from two mixed secondary day schools in Kisii Township. Indepth questionnaires were used to collect data from the girls, key informant interviwers conducted on the head teachers and focused discussions held with 16 randomly selected girls. An...

Words: 6410 - Pages: 26

Free Essay

Construction of a Sun Tracker

...CHAPTER ONE 1.0 INTRODUCTION Current trends in electric energy generation are moving towards the utilization of the environment friendly sources of energy, represented by the wind and solar energy ones as a supplementary energy resource. The solar based one is the more attractive because it is characterized by being free, incur no fuel cost, abundant, limits less, distributed all over the world, pollution free, and require little maintenance. Maximizing power output from a solar system is desirable to increase efficiency and in order to maximize power output from the solar panels, one need to keep the panels aligned with the sun. As such, a means of tracking the sun is required. Efficient collection of maximum solar irradiance (MSI) on a flat plate type photovoltaic solar panels or a cylindrical parabolic solar reflector requires adjustments of two parameters of the energy collecting surface namely the angle of Azimuth, and the angle of tilt, of the surface to be illuminated. As the elevation angle of the sun remains almost invariant in a month and varies little (latitude + 100) in a year, there is no need for automatic adjustment of the tilt angle. Everyday, the sun rises in the east, moves across the sky and sets in the west. If one could get a solar panel to turn and look at the sun all day hours, then it could receive the maximum amount of sunlight possible and convert it into the more useful energy (electricity). The current of the solar module is very sensitive...

Words: 8190 - Pages: 33

Free Essay

Burglar Alarm

...Burglar  Alarm     Final  Report       Author:  Sayed  Ahmed  Abdulla  Jawad   Student  ID:  20900032   Academic  Supervisor:  David  Krause     For  Bahrain  Polytechnic         Acknowledgment           I  would  like  to  express  my  best  appreciation  and  gratitude  to  all  tutors  who  helped  me  to  be  who  I  am  and  what   I’m  doing  at  the  moment.  Where  I  am  today  is  a  result  of  the  hard  work  done  in  the  past  four  years,  As  well  as   Mr.  David  Kruse  my  academic  supervisor  and  mentor,  who  guided  me  through  out  the  project  and  his   encouragement  to  maintain  my  progress  in  track  during  the  period  of  the  project.     I  would  also  like  to  acknowledge  with  much  appreciation  to  my  tutors  that  shared  their  knowledge  with  my  self   and  us  as  a  group  of  students,  leading  us  to  where  we  are.  As  well  as  Mr.  Sayed  Yousif  who  was  supportive  and   helpful  when  facing  a  problem  that...

Words: 10290 - Pages: 42

Premium Essay

Nothing

...TELECOMMUNICATION SWITCHING AND NETWORKS TElECOMMUNICATION SWITCHING NffiWRKS AND THIS PAGE IS BLANK Copyright © 2006, 2005 New Age International (P) Ltd., Publishers Published by New Age International (P) Ltd., Publishers All rights reserved. No part of this ebook may be reproduced in any form, by photostat, microfilm, xerography, or any other means, or incorporated into any information retrieval system, electronic or mechanical, without the written permission of the publisher. All inquiries should be emailed to rights@newagepublishers.com ISBN (10) : 81-224-2349-3 ISBN (13) : 978-81-224-2349-5 PUBLISHING FOR ONE WORLD NEW AGE INTERNATIONAL (P) LIMITED, PUBLISHERS 4835/24, Ansari Road, Daryaganj, New Delhi - 110002 Visit us at www.newagepublishers.com PREFACE This text, ‘Telecommunication Switching and Networks’ is intended to serve as a onesemester text for undergraduate course of Information Technology, Electronics and Communication Engineering, and Telecommunication Engineering. This book provides in depth knowledge on telecommunication switching and good background for advanced studies in communication networks. The entire subject is dealt with conceptual treatment and the analytical or mathematical approach is made only to some extent. For best understanding, more diagrams (202) and tables (35) are introduced wherever necessary in each chapter. The telecommunication switching is the fast growing field and enormous research and development are undertaken by...

Words: 115682 - Pages: 463

Free Essay

Khuharenko

...В.А. Кухаренко ПРАКТИКУМ ПО ИНТЕРПРЕТАЦИИ ТЕКСТА Допущено Министерством просвещения СССР в качестве учебного пособия для студентов педагогических институтов по специальности № 2103 «Иностранные языки» МОСКВА «ПРОСВЕЩЕНИЕ» 1987 ББК 81.2 Англ К95 Рецензенты: кафедра английской филологии ЛГПИ им. А. И. Герцена; кандидат филологических наук, доцент МГПИИЯ им. Мориса Тореза О. Л. Каменская Кухаренко В. А. КЯ5 Практикум по интерпретации текста: Учеб. пособие для студентов пед. ин-тов по спец. № 2103 «Иностр. яз.».— Просвещение. 1987.—176 с. 4309000000—608 103(03)—87 Пособие предназначено для студентов старших курсов факультетов английского языка педагогических институтов. Оно написано в соответствии с программой по данному курсу и состоит из двух частей. Первая часть пособия включает 6 рассказов и образцы их интерпретации. Во второй части даны 16 рассказов, представляющих различные жанры короткой прозы писателей США, Великобритании, Австралии и Новой Зеландии, предназначенные для самостоятельной работы студентов. ББК 81.2Англ © Издательство сПросвещение», 1987 ПРЕДИСЛОВИЕ Настоящее издание представляет собой практическое пособие по интерпретации текста. Оно предназначено для студентов факультетов английского языка педагогических институтов и написано в соответствии с Программой МП СССР по курсу языкознания. Цель пособия — научить студентов не только умению глубоко проникать в художественный...

Words: 80382 - Pages: 322